Skip to content

Instantly share code, notes, and snippets.

Created March 16, 2017 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/e495274453e95e97890324a56e4c96bd to your computer and use it in GitHub Desktop.
Save anonymous/e495274453e95e97890324a56e4c96bd to your computer and use it in GitHub Desktop.
miniature dans flux rss wordprss
function rss_post_thumbnail($content) {
global $post;
if(has_post_thumbnail($post->ID)) {
$content = '<p>' . get_the_post_thumbnail($post->ID) .
'</p>' . get_the_content();
}
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment