在RSS提要中插入缩略图
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在RSS提要中插入缩略图相关的知识,希望对你有一定的参考价值。
Placed in the functions.php file.
function insertThumbnailRSS($content) { global $post; if ( has_post_thumbnail( $post->ID ) ){ $content = '<p>' . get_the_post_thumbnail( $post->ID, 'medium' ) . '</p>' . $content; } return $content; } add_filter('the_excerpt_rss', 'insertThumbnailRSS'); add_filter('the_content_feed', 'insertThumbnailRSS');
以上是关于在RSS提要中插入缩略图的主要内容,如果未能解决你的问题,请参考以下文章