Skip to content

Instantly share code, notes, and snippets.

@gmmedia
Created January 22, 2025 08:52
Show Gist options
  • Save gmmedia/042edb9fc35237933954f3711d56e34f to your computer and use it in GitHub Desktop.
Save gmmedia/042edb9fc35237933954f3711d56e34f to your computer and use it in GitHub Desktop.
rss
function j0e_imagetoRSS($content) {
if (has_post_thumbnail()) {
$feedlink = esc_url(apply_filters('the_permalink_rss', get_permalink()));
$content = '<a href="' . $feedlink . '" rel="nofollow ugc">' . get_the_post_thumbnail(get_the_ID(), 'thumbnail', array('style' => 'float: left; margin: 0 10px 10px 0;')) . '</a>' . $content;
}
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment