您必须将问题中的代码放入函数中。也许是这样的function wpse_91897_get_image() { }
. 然后尝试下面的代码。我还没有测试过这个,但应该可以。
function wpse_91897_display($content) {
global $single;
$output = wpse_91897_get_image();
if (is_single()) {
return $content . $output;
} else {
return $content;
}
}
然后添加一个过滤器来调用内容的函数。
add_filter(\'the_content\', \'wpse_91897_display\');
然后添加一些CSS来定位和设置样式。它会显示在你帖子的内容下面。