Created
November 10, 2015 13:33
-
-
Save JulioPotier/c1837ab497ab24faadb0 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 | |
add_action( 'after_setup_theme', 'my_square_size' ); | |
function my_square_size() { | |
add_image_size( 'square', 320, 320, true ); | |
} | |
add_filter( 'embed_thumbnail_image_size', '__return_square' ); | |
add_filter( 'embed_thumbnail_image_shape', '__return_square' ); | |
function __return_square() { | |
return 'square'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment