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

发布于 2024-11-05 02:22:56 字数 625 浏览 3 评论 0原文

我正在尝试使用 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,论文主题。

谢谢!

I am trying to use this function in functions.php to grab the thumbnail of posts and add them to my RSS feed.

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

Problem is -- this crashes my server. I get a 500 error. If I comment out the add-filter lines there's no error.

Anyone give a hand re what's going on here? I am using Wordpress 3.1.2, Thesis Theme.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光是把杀猪刀 2024-11-12 02:22:56

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

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

I've tested your code on my dev site and it works as expected. It may not work due to post-thumbnail support not being enabled. From the codex:

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

Source:

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文