仅对单个帖子启用 wpautop 过滤器
我已将以下内容添加到我的 WordPress 主题 Functions.php 文件中:
//disable wpautop filter
remove_filter ('the_content', 'wpautop');
remove_filter ('the_excerpt', 'wpautop');
它将删除所有那些讨厌的 标签 WordPress 包裹着一切!
但是,我想知道是否有办法仅在非单页面(例如:主页、存档、类别、作者等)上执行此操作。我想在除单个帖子和页面之外的所有内容上禁用 wpaautop...可能吗?
I've added the following to my wordpress themes functions.php file:
//disable wpautop filter
remove_filter ('the_content', 'wpautop');
remove_filter ('the_excerpt', 'wpautop');
Which strips out all those pesky <p> </p>
tags wordpress wraps around everything!
However, I was wondering if there was a way to do this ONLY on non-single pages (eg: home, archive, category, author etc). I want to disable wpautop on everything except single posts and pages... possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其添加到主题的
functions.php
文件中。Add that to your theme's
functions.php
file.