bbpress 字体
In WordPress, we can filter the post content by adding a filter to the_content
:
在WordPress中 ,我们可以通过向the_content
添加过滤器来过滤帖子内容:
add_filter('the_content', 'inline_markdown_pre_process_shortcode2', 7);
add_filter('the_content', 'inline_markdown_pre_process_shortcode2', 7);
But how to filter the content for bbpress contents?
但是如何过滤bbpress内容呢?
bbpress topic and reply (they are separated) content have their own filters:
bbpress主题和回复(它们是分开的)内容具有自己的过滤器:
bbp_get_topic_content
and bbp_get_reply_content
.
bbp_get_topic_content
和bbp_get_reply_content
。
For example,
例如,
add_filter('bbp_get_topic_content', 'my_plugin_custom_bbp_function');
add_filter('bbp_get_reply_content', 'my_plugin_custom_bbp_function');
function my_plugin_custom_bbp_function($content) {
return 'my_plugin_custom_bbp_function processed: '.$content;
}
翻译自: https://www.systutorials.com/how-to-filter-bbpress-content-in-wordpress/
bbpress 字体