Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@cre8tivediva
Created May 8, 2016 20:50
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 cre8tivediva/fae03f925e8d166dad355f6c61ce260a to your computer and use it in GitHub Desktop.
Save cre8tivediva/fae03f925e8d166dad355f6c61ce260a to your computer and use it in GitHub Desktop.
Create New RSS Feed for MailChimp When Resizing Thumbnails for Bloglovin
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
add_filter( 'send_images_rss_thumbnail_size', 'prefix_change_thumbnail_alternate_feed' );
function prefix_change_thumbnail_alternate_feed( $image_size ) {
if ( is_feed( 'email' ) ) {
$image_size = 'mailchimp-rss';
}
return $image_size;
}
add_image_size( 'mailchimp-rss', 300, 150, true );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment