Skip to content

Instantly share code, notes, and snippets.

@shazdeh
Created February 4, 2014 12:13
Show Gist options
  • Save shazdeh/8802568 to your computer and use it in GitHub Desktop.
Save shazdeh/8802568 to your computer and use it in GitHub Desktop.
Register an image size as public
<?php
function custom_themify_extend_image_sizes( $sizes ) {
$sizes['extralarge'] = __( 'Extra Large', 'themify' );
return $sizes;
}
add_filter( 'image_size_names_choose', 'custom_themify_extend_image_sizes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment