Wordpress add_filter() 将第一个图像添加到 RSS - 导致服务器错误
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经在我的开发网站上测试了您的代码,它按预期工作。由于未启用后缩略图支持,它可能无法工作。来自法典:
来源:
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:
Source:
http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail