WordPress Beitragsbild
Wie kann man WordPress Beitragsbilder in das RSS-Feed einfügen?
- In der Standarteinstellung wird kein Bild ins RSS-Feed eingefügt.
- Man kann folgenden Code in die functions.php Datei einfügen, damit das möglich ist.
<?php
/**
* Beitragsbilder in den RSS-Feed einfügen
*/
function evolution_featuredtoRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = '<div>' . get_the_post_thumbnail( $post->ID, 'large', array( 'style' => 'margin-bottom: 15px;' ) ) . '</div>' . $content;
}
return $content;
}
add_filter('the_excerpt_rss', 'evolution_featuredtoRSS');
add_filter('the_content_feed', 'evolution_featuredtoRSS');