Skip to content

Instantly share code, notes, and snippets.

@jplouback
Created June 7, 2018 15:39
Show Gist options
  • Save jplouback/c68f000728c12ced82944d74f0a71f1b to your computer and use it in GitHub Desktop.
Save jplouback/c68f000728c12ced82944d74f0a71f1b to your computer and use it in GitHub Desktop.
Inserindo imagem destacada no feed do site - Wordpress
/* Adicionando post_thumbnail no feed */
add_action( 'rss2_item', 'custom_thumbnail_tag' );
function custom_thumbnail_tag() {
global $post;
if ( has_post_thumbnail( $post->ID ) ) {
$thumbnail = get_the_post_thumbnail_url( $post->ID );
echo("<image>{$thumbnail}</image>");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment