Skip to content

Instantly share code, notes, and snippets.

@tokopress
Created January 20, 2017 04:20
Show Gist options
  • Save tokopress/8b7f57702773807d41f9005b959854ed to your computer and use it in GitHub Desktop.
Save tokopress/8b7f57702773807d41f9005b959854ed to your computer and use it in GitHub Desktop.
Eventica - Override add_image_size (Child Theme)
add_action( 'after_setup_theme', 'tokopress_childtheme_setup_image_size', 20 );
function tokopress_childtheme_setup_image_size() {
// imgae size
add_image_size( 'blog-thumbnail', 400, 200, true );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment