Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Created July 21, 2015 18:29
Show Gist options
  • Save barrykooij/ea5439b7621adce2e91f to your computer and use it in GitHub Desktop.
Save barrykooij/ea5439b7621adce2e91f to your computer and use it in GitHub Desktop.
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