您最好使用the_content
过滤挂钩并将您的内容添加到“动态”帖子中,例如:
add_filter(\'the_content\',\'add_my_extra_content\');
function add_my_extra_content($content){
$my_extra = "<h5>this is the extra content</h5>\';
//add before post content
// return $my_extra.$content;
//add after post content
return $content.$my_extra.;
}