Created
September 28, 2016 15:06
-
-
Save kaisermann/c2ae0b702d9a99be408776ca960ba5ae 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
add_action('init', 'custom_image_sizes'); | |
function custom_image_sizes() | |
{ | |
add_image_size('medium', get_option( 'medium_size_w' ), get_option( 'medium_size_h' ), 'center' ); | |
add_image_size('large', get_option( 'large_size_w' ), get_option( 'large_size_h' ), 'center' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment