您希望它显示在哪里?
此函数将在每个页面的内容之前或之后放置内容。
function rt_before_after($content) {
$beforecontent = \'This goes before the content.\';
$aftercontent = \'And this will come after.\';
$fullcontent = $beforecontent . $content . $aftercontent;
return $fullcontent;
}
add_filter(\'the_content\', \'rt_before_after\');
如果你特别想要它,请告诉我你想要的地方,我会提供其他选择。