我尝试使用高级自定义字段显示图片来自定义我的RSS Feed。 使用我的自定义代码我得到图像src但我想显示图像。 高级自定义字段命名为" image_rss"并返回图像src。
这是我的代码(在function.php中)我也从每个帖子中获取缩略图。
automatic_feed_links();
function wpc_rss_miniature($excerpt) {
global $post;
$custom_image_rss = the_field('image_rss');
$content = '<p>' . get_the_post_thumbnail($post->ID, 'thumbnail') .
'</p>' . get_the_excerpt(); '<img src="'. $custom_image_rss .'">';
return $content;
}
add_filter('the_excerpt_rss', 'wpc_rss_miniature');
add_filter('the_content_feed', 'wpc_rss_miniature');
任何人都可以帮我这个吗? 我无法找到如何显示图像,而不仅仅是获得图像的src 谢谢你的帮助