使用add_filter()后的the_content后的WordPress插件内容

时间:2012-07-01 09:58:11

标签: php wordpress plugins

我正在尝试使用

在WordPress中my_custom_function之后添加the_content
add_filter ('the_content', 'my_custom_function');
add_action ('the_content', 'my_custom_function'); // I tried both

我的my_custom_function功能就像这样

function my_custom_function($content) {
    if(is_single()) {
        $content .= "this is custom function content";
        $content .= my_another_custom_function();
        $content .= "this is custom function content";
    }

return $content;
}

我的问题是此代码在 my_another_custom_function()之前附加了the_content ,但我想要 内容后

代码$content .= "this is custom function content";中提供的其他两行用于测试, the_content后出现

有人可以告诉我如何修理它以及我做错了什么......

1 个答案:

答案 0 :(得分:1)

最可能的原因是my_another_custom_function()回显输出而不是仅仅返回它。