我想知道,如何过滤bbPress的回复?(我的意思是,作为典型帖子的内容过滤器…)
这个不行:
add_filter(\'the_content\',\'custommm_functiooonn\');
function custommm_functiooonn($content){
return \'hiiiiiiii\'.$content;
}
我想知道,如何过滤bbPress的回复?(我的意思是,作为典型帖子的内容过滤器…)
这个不行:
add_filter(\'the_content\',\'custommm_functiooonn\');
function custommm_functiooonn($content){
return \'hiiiiiiii\'.$content;
}
add_filter(\'bbp_get_topic_content\', \'custommm_functiooonn\');
add_filter(\'bbp_get_reply_content\', \'custommm_functiooonn\');
function custommm_functiooonn($content){
return \'hiiiiiiii\'.$content;
}
bbPress让我头痛,想知道如何去除<br> 和<p> 导入后数据库中现有帖子中的标记。我试过编辑“formatting.php”,但除了一天内隐藏所有论坛帖子外,没有任何结果。有什么建议吗?