markdown 将特色图像添加到RSS源。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 将特色图像添加到RSS源。相关的知识,希望对你有一定的参考价值。

<?php

function ccd_rss_featured_images( $content ) {
    
	global $post;
    
    // For versatility, apply a filter to the size returned.
	$size = apply_filters( 'ccd_rss_featured_image_size', 'medium' );
    
	if ( has_post_thumbnail( $post->ID ) ) {
		$content = sprintf( '<div>%1s</div><div>%2s</div>', get_the_post_thumbnail( $post->ID, $size, [] ), $content );
	}
    
	return $content;
}
add_filter( 'the_excerpt_rss', 'ccd_rss_featured_images' );
add_filter( 'the_content_feed', 'ccd_rss_featured_images' );

?>
# RSS Featured Image

WordPress Snippet

以上是关于markdown 将特色图像添加到RSS源。的主要内容,如果未能解决你的问题,请参考以下文章

将 WordPress 特色图片添加到 RSS 提要

markdown 将语言设置添加到“显示特色图像,直到选择变体”帮助文档

PHP Wordpress将帖子缩略图添加到RSS源

从外部RSS提要获取Wordpress特色图像

有没有办法将https-rss源添加到Outlook 2013(Windows)?

如何将图像添加到 RSS 2.0 中的项目?