Created
March 19, 2018 15:39
-
-
Save mmilosheski/e478fbda4c00a93ca21a60e27d3bcce0 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
<?php | |
// add code below in your functions.php file in your active theme | |
add_theme_support( 'post-thumbnails' ); | |
add_image_size( 'new-custom-featured-image', 800, 600, true ); | |
add_filter( 'image_size_names_choose', 'custom_sizes' ); | |
function custom_sizes( $sizes ) { | |
return array_merge( $sizes, array( | |
'new-custom-featured-image' => __( 'New Custom Featured Image' ), | |
) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment