Skip to content

Instantly share code, notes, and snippets.

@gcoop
Created January 26, 2011 14:16
Show Gist options
  • Save gcoop/796743 to your computer and use it in GitHub Desktop.
Save gcoop/796743 to your computer and use it in GitHub Desktop.
Include thumbnail in WP RSS
<?php
function dorphin_rss_item()
{
global $post;
$d = get_post_custom();
if (!empty($d['thumb_image']))
{
?>
<enclosure url="<?php echo(CDN_IMAGE.$d['thumb_image'][0]); ?>" type="image/jpeg" />
<media:content url="<?php echo(CDN_IMAGE.$d['thumb_image'][0]); ?>" type="image/jpeg" expression="sample" />
<media:thumbnail url="<?php echo(CDN_IMAGE.$d['thumb_image'][0]); ?>" type="image/jpeg" width="280" height="158" />
<?php
}
}
add_action('rss2_item', 'dorphin_rss_item');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment