我想在the_content
之后显示一些自定义内容。但是,我无法使其发挥作用。自定义内容始终显示在the_content
之前。这是我的代码:
function after_content($content){
function custom_content() {
include('page.php');
...
}
$content = $content . custom_content();
return $content;
}
add_filter('the_content', 'after_content');