Skip to content

Instantly share code, notes, and snippets.

@kaisermann
Created September 28, 2016 15:06
Show Gist options
  • Save kaisermann/c2ae0b702d9a99be408776ca960ba5ae to your computer and use it in GitHub Desktop.
Save kaisermann/c2ae0b702d9a99be408776ca960ba5ae to your computer and use it in GitHub Desktop.
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