Wordpress add_filter()将第一个图像添加到RSS - 导致服务器错误

时间:2011-05-04 01:07:32

标签: php wordpress rss add-filter wordpress-thesis-theme

我正在尝试在 functions.php 中使用此功能来抓取帖子的缩略图并将其添加到我的RSS源。

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');

问题是 - 这会导致我的服务器崩溃。我收到500错误。如果我注释掉add-filter行,则没有错误。

任何人都可以帮忙了解这里发生了什么?我正在使用Wordpress 3.1.2,Thesis Theme。

谢谢!

1 个答案:

答案 0 :(得分:1)

我已经在我的开发网站上测试了您的代码,它按预期工作。由于未启用缩略图后支持,它可能无法正常工作。来自codex:

To enable Post Thumbnails, the current theme must include add_theme_support( 'post-thumbnails' ); in its functions.php file.

来源:

http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail