WordPress的特色图像可以不插入编辑器,可以单独设置。很多时候我们为了美观,想在文章页的内容开头,就插入这篇文章的特色图像,向下面一样的效果,特色图像是在文章最前面。
实现方法,在你的主题文件functions.php
插入
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; }
在文章页loop的插入即可。
其他方法还可以通过先获取WordPress特色图像地址,在做输出,这个就比较简单,不多说。