Skip to content

Instantly share code, notes, and snippets.

@JulioPotier
Created November 10, 2015 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JulioPotier/c1837ab497ab24faadb0 to your computer and use it in GitHub Desktop.
Save JulioPotier/c1837ab497ab24faadb0 to your computer and use it in GitHub Desktop.
<?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