Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Last active December 15, 2017 12:04
Show Gist options
  • Save barrykooij/6b5a4c88e17d4340c8350f197706501f to your computer and use it in GitHub Desktop.
Save barrykooij/6b5a4c88e17d4340c8350f197706501f to your computer and use it in GitHub Desktop.
function pc_theme_setup() {
add_image_size( 'pc_image_custom', 300, 300, true ); // width: 300, height: 300 - feel free to change these values
}
add_action( 'after_setup_theme', 'pc_theme_setup' );
function pc_thumbnail_size( $size ) {
return 'pc_image_custom';
}
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