Created
September 23, 2011 09:08
-
-
Save getflourish/1236994 to your computer and use it in GitHub Desktop.
Override Wordpress Default Medium Image Size
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_filter( 'pre_option_medium_size_w', 'my_override_medium_size_w' ); | |
| function my_override_medium_size_w($size) { | |
| return 123; | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment