Skip to content

Instantly share code, notes, and snippets.

@rabbitinblack
Last active August 29, 2015 14:03
Show Gist options
  • Save rabbitinblack/dda87f387596f3c3b21d to your computer and use it in GitHub Desktop.
Save rabbitinblack/dda87f387596f3c3b21d to your computer and use it in GitHub Desktop.
<?php
add_action('after_setup_theme', 'change_plugin_image_size');
function change_plugin_image_size() {
remove_image_size('plugin-image');
add_image_size('plugin-image', 300, 150, true);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment