Created
March 31, 2015 18:13
-
-
Save webmasterninjay/eb803b5782933be34a84 to your computer and use it in GitHub Desktop.
Genesis Theme: Use different image size in CPT Archive page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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