这是一个非常简单的代码,它允许您在 RSS feed 中插入特色图像,这样,当您在 Facebook 等社交网络上转发您的 feed 时,该图像可以伴随您的帖子的标题和演示。
为此,请转到您的文件 函数.php 添加这些代码行:
- 如果您只想使用允许您展示图像的本机 WordPress 功能,这里是您需要的代码:
函数 imageRSS($content) {
全球$post;
if (has_post_thumbnail($post->ID)){
$内容 = » . get_the_post_thumbnail( $post->ID, 'thumbnail', array( 'style' => 'float: right; margin:0 0 10px 10px;' ) ) . » 。 $含量;
}
返回$内容;
}
add_filter('the_excerpt_rss', 'imageRSS');
add_filter('the_content_feed', 'imageRSS');
- 如果除了 WordPress 特色图片的原生功能之外,您的某些文章没有特色图片,则 插入 获取图像 将扫描您的文章以查找任何图像以用作特色图像。然后我建议这个代码,如果没有特色图像,将使插件工作 获取图像 查找可能插入到您的文章中的一个:
函数 imageRSS($content) {
全球$post;
if (has_post_thumbnail($post->ID)){
$内容 = » . get_the_post_thumbnail( $post->ID, 'thumbnail', array( 'style' => 'float: right; margin:0 0 10px 10px;' ) ) . » 。 $含量;
}
别的 {
$内容 = » . get_the_image(array('width' => 150, 'image_scan' => true , 'image_class' => », 'meta_key' => array( 'Thumbnail', 'thumbnail' ))) 。 » 。 $含量;
}
返回$内容;
}
add_filter('the_excerpt_rss', 'imageRSS');
add_filter('the_content_feed', 'imageRSS');
- 最后,如果您想检查文章中是否附有图像,以防没有特色图像,您可以使用此代码:
函数 show_image_feed($content) {
全球$post;
$args = 数组(
'post_type' => '附件',
'numberposts' => 1,
'post_status' => 空,
'post_parent' => $post->ID
);
$attachment = get_posts($args);
如果(1TP4附件){
$内容='
'。 $内容。 '
ID)。' >>>阅读更多'; } 返回$内容; add_filter('the_excerpt_rss', 'show_image_feed');
4 响应
早上好,
非常感谢,它运行良好并且实现起来非常简单:)
顶,非常感谢您的反馈! 😉
非常感谢你太棒了
拜托,我不只是阅读 rss 小部件中的图像