Last active
July 3, 2018 13:16
-
-
Save obiPlabon/291c3a70326292baab28ae141473879c 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 | |
/** | |
* 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