wordpress的新功能“文章缩略图“的好用之处在于它具有非常强的灵活性,你可以随意选择在哪里显示和如何显示它。想要在博客文章中显示文章缩略图,你需要用正确的模板标签来调用:
<?PHP the_post_thumbnail(); ?>
当你把上面的代码加入主循环时,the_post_thumbnail()就会输出文章缩略图的标记,并带上缩略图的完整版或是预览版。当然文章缩略图还有很多很棒的地方。使用上面的方法在博客文章中加入缩略图之后,让我们来看看该如何在Feed中显示文章缩略图。
在 Feed中显示文章缩略图想在Feed中加入文章缩略图,你需要过滤wordpress的Feed功能,在Feed-excerpt 和 full-Feed 加入必要的模板标签:
// show post thumbnails in Feeds function diw_post_thumbnail_Feeds($content) { global $post; if(has_post_thumbnail($post->ID)) { $content = '<div>' . get_the_post_thumbnail($post->ID) . '</div>' . $content; } return $content; } add_filter('the_excerpt_RSS','diw_post_thumbnail_Feeds'); add_filter('the_content_Feed','diw_post_thumbnail_Feeds');
在当前主题的I functions.PHP文件里加入上面的代码,在你的Feed中每篇文章的前面就会显示缩略图。如果你想在文章内容的后面显示缩略图,你只需要将第四行的代码改为下方的代码,即可。
$content = $content . '<div>' . get_the_post_thumbnail($post->ID) . '</div>';总结
以上是内存溢出为你收集整理的在wordpress的feed中显示文章缩略图全部内容,希望文章能够帮你解决在wordpress的feed中显示文章缩略图所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)