ID, 'full'); if (!empty($post_thumbnail_image)) { $link = get_post_meta( $post->ID, 'link', true ); if (empty($link)) $link = get_permalink(); $post_thumbnail = "

".$post_thumbnail_image."

"; } return apply_filters('easel_thumbnail_feed', $post_thumbnail); } } // removed the easel_in_comic_category so that if it has a post-image it will add it to the rss feed (else rss comic thumb) if (!function_exists('easel_insert_thumbnail_feed')) { function easel_insert_thumbnail_feed($content) { global $post, $wp_query; if (is_feed()) { $content .= easel_thumbnail_feed(); } return $content; } } if (easel_themeinfo('enable_post_thumbnail_rss')) { add_filter('the_content','easel_insert_thumbnail_feed'); add_filter('the_excerpt_rss','easel_insert_thumbnail_feed'); } // Using the_content and the_excerpt instead of the_content_rss cause it doesn't work properly otherwise ?>