你必须使用the_content
滤器
下面的示例只是从单篇文章编辑屏幕中添加一个特色图像集,该屏幕仅显示在单篇文章的内容之前。
您可以将其更改为显示标题和永久链接。
add_filter( \'the_content\', \'featured_image_before_content\' );
function featured_image_before_content( $content ) {
if ( is_singular(\'post\') && has_post_thumbnail()) {
$thumbnail = get_the_post_thumbnail();
$content = $thumbnail . $content;
}
return $content;
}
资料来源:
Plugin API/Filter Reference/the content