php – 照片RSS Feed显示

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – 照片RSS Feed显示脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个wordpress博客 http://cgvector.com,我想在RSS Feed显示精选图像.我怎样才能做到一点?我的Feed地址是: http://feeds.feedburner.com/cgvector

我已添加代码,但它无法正常工作.

function featuredtoRSS($content) {
    global $post;

    if ( has_post_thumbnail( $post->ID ) ){
    $content = '' . get_the_post_thumbnail( $post->ID,'thumbnail',array( 'style' => 'float:left; margin:0 15px 15px 0;' ) ) . '' . $content;
    }

    return $content;
}

add_filter('the_excerpt_RSS','featuredtoRSS');
add_filter('the_content_Feed','featuredtoRSS');

解决方法

function custom_Feed($content) {
    return wp_get_attachment_image(get_post_thumbnail_id(),'full') . '<br />' . $content;
}
add_filter('the_content_Feed','custom_Feed');

这个应该为你做的伎俩……

脚本宝典总结

以上是脚本宝典为你收集整理的php – 照片RSS Feed显示全部内容,希望文章能够帮你解决php – 照片RSS Feed显示所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。