Skip to content

Instantly share code, notes, and snippets.

@obiPlabon
Last active July 3, 2018 13:16
Show Gist options
  • Save obiPlabon/291c3a70326292baab28ae141473879c to your computer and use it in GitHub Desktop.
Save obiPlabon/291c3a70326292baab28ae141473879c to your computer and use it in GitHub Desktop.
<?php
/**
* Make custom images sizes selectable
*
* @param array $sizes
* @return array
*/
function op_selectable_image_sizes( $sizes ) {
return array_merge( $sizes, array(
'twentyseventeen-thumbnail-avatar' => __( 'Thumbnail Avatar', 'twentyseventeen' ),
) );
}
add_filter( 'image_size_names_choose', 'op_selectable_image_sizes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment