
*** 作很简单,把下面的代码复制到主题的functions.PHP文件,然后保存就可以了。
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;
} //32网教76程
add_filter('the_excerpt_RSS','diw_post_thumbnail_Feeds');
add_filter('the_content_Feed','diw_post_thumbnail_Feeds'); 总结
以上是内存溢出为你收集整理的WordPress在RSS订阅里显示文章缩略图全部内容,希望文章能够帮你解决WordPress在RSS订阅里显示文章缩略图所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)