【发布时间】:2015-02-23 12:47:42
【问题描述】:
我在这里制作插件我需要我的插件仅适用于我的 WordPress 帖子内容“p”标签。就像帖子内容 p 标签只有大写字母,但其他网站的 p 标签不是大写。站点其他 'p' 标签无需应用我的插件。我怎样才能使这个功能?
【问题讨论】:
标签: wordpress post plugins filter
我在这里制作插件我需要我的插件仅适用于我的 WordPress 帖子内容“p”标签。就像帖子内容 p 标签只有大写字母,但其他网站的 p 标签不是大写。站点其他 'p' 标签无需应用我的插件。我怎样才能使这个功能?
【问题讨论】:
标签: wordpress post plugins filter
If you are telling about filter the_content you can use this-
I hope this is usefull for you:
<?php add_filter( 'the_content', 'filter_function_name' ) ?>
OR
<?php add_filter( 'the_content', '$data' ) ?>
【讨论】: