Skip to content

Instantly share code, notes, and snippets.

@webmasterninjay
Created March 31, 2015 18:13
Show Gist options
  • Save webmasterninjay/eb803b5782933be34a84 to your computer and use it in GitHub Desktop.
Save webmasterninjay/eb803b5782933be34a84 to your computer and use it in GitHub Desktop.
Genesis Theme: Use different image size in CPT Archive page
<?php
function food_recipe_image_size( $image_size ) {
// Only run on the 'image' post type archive
if( is_post_type_archive( $posttype ) )
$image_size = 'recipe-thumbs';
return $image_size;
}
add_filter( 'genesis_pre_get_option_image_size', 'food_recipe_image_size', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment