Created
January 20, 2017 04:20
-
-
Save tokopress/8b7f57702773807d41f9005b959854ed to your computer and use it in GitHub Desktop.
Eventica - Override add_image_size (Child Theme)
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
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