斯姆拉吉,
尝试使用过滤器。使用此代码段。将此放在我们的主题功能中。php文件
add_filter(\'the_content\', \'adddata\');
function adddata($content) {
$pre_post_text = \'Welcome to my post!..........\';
// only display this on single post pages
if(is_single() && !is_home()) {
$content = $pre_post_text.$content;
}
return $content;
}