Skip to content

Instantly share code, notes, and snippets.

@mmilosheski
Created March 19, 2018 15:39
Show Gist options
  • Save mmilosheski/e478fbda4c00a93ca21a60e27d3bcce0 to your computer and use it in GitHub Desktop.
Save mmilosheski/e478fbda4c00a93ca21a60e27d3bcce0 to your computer and use it in GitHub Desktop.
<?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