upgraded to 1.4.4 this morning. seems to be a conflict with this bit of code I use in my functions.php to include images in my RSS feed. I display the feed on my home page.
function insertThumbnailRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = '' . get_the_post_thumbnail( $post->ID, 'thumbnail', array( 'alt' => get_the_title(), 'title' => get_the_title() ) ) . '' . $content;
}
return $content;
}
add_filter('the_excerpt_rss', 'insertThumbnailRSS');
add_filter('the_content_feed', 'insertThumbnailRSS');
When I remove this bit from functions, homepage feed works fine, when I include it.. broken. this did not happen in 1.4.3.
any help is greatly appreciated, thanks!