Wordpress:自定义内容显示在$ content之前

时间:2015-06-10 02:17:36

标签: php wordpress filter

我想在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');

0 个答案:

没有答案