Skip to content

Instantly share code, notes, and snippets.

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 jtsternberg/1c6b332b2db6da7e38226b88dff5c6a0 to your computer and use it in GitHub Desktop.
Save jtsternberg/1c6b332b2db6da7e38226b88dff5c6a0 to your computer and use it in GitHub Desktop.
Is it possible to set the default image display size in a post?
<?php
add_filter( 'dsgnwrks_instagram_image_size', 'modify_dsgnwrks_instagram_image_size' );
function modify_dsgnwrks_instagram_image_size( $size ) {
return 'medium';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment