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
| add_action( 'save_post', 'custom_featured_image_size', 10, 2 ); | |
| function custom_featured_image_size( $post_id, $post ) { | |
| $image_size_name = 'my-custom-image-size'; | |
| $cpt = 'my-cpt'; | |
| $width = 1600; | |
| $height = 1600; | |
| $crop = false; | |
| // Only for my CPT. |
OlderNewer