Skip to content

Instantly share code, notes, and snippets.

@richerimage
Created October 20, 2014 15:04
Show Gist options
  • Select an option

  • Save richerimage/f8a320e7e0645a7ad6e7 to your computer and use it in GitHub Desktop.

Select an option

Save richerimage/f8a320e7e0645a7ad6e7 to your computer and use it in GitHub Desktop.
Add Image Sizes
class dna_custom_class extends thesisdna {
public function __construct() {
add_image_size('Letterbox', 460, 258, true );
add_filter('image_size_names_choose', array($this, 'my_custom_sizes'));
}
public function my_custom_sizes( $sizes ) {
return array_merge($sizes, array(
'Letterbox' => __('Letterbox'),
));
}
} new dna_custom_class;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment