我用这段代码把一些函数放在内容之后,但这段代码不起作用。它出现在内容之前,而不是之后。
function add_wb_posts_pagination ($content) {
$content .= wb_posts_pagination();
return $content;
}
add_filter(\'the_content\', \'add_wb_posts_pagination\' );
与我用于添加其他函数的代码相同,但这不起作用。。。有什么问题吗?