Created
July 21, 2015 18:29
-
-
Save barrykooij/ea5439b7621adce2e91f to your computer and use it in GitHub Desktop.
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
function pc_theme_setup() { | |
add_image_size( 'pc_sidebar_image', 300, 100, true ); // width: 300, height: 100 - feel free to change these values | |
} | |
add_action( 'after_setup_theme', 'pc_theme_setup' ); | |
function pc_thumbnail_size( $size ) { | |
return 'pc_sidebar_image'; | |
} | |
add_filter( 'pc_apdc_thumbnail_size', 'pc_thumbnail_size' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment