Skip to content

Instantly share code, notes, and snippets.

@larodiel
Last active December 12, 2017 15:01
Show Gist options
  • Save larodiel/bd12ba19a5cea1b7ff729fefbc850f04 to your computer and use it in GitHub Desktop.
Save larodiel/bd12ba19a5cea1b7ff729fefbc850f04 to your computer and use it in GitHub Desktop.
Wordpress image default change
function vl_default_image_size () {
return 'full';
}
add_filter( 'pre_option_image_default_size', 'vl_default_image_size' );
function vl_default_image_settings() {
update_option( 'image_default_align', 'center' );
update_option( 'image_default_link_type', 'none' );
update_option( 'image_default_size', 'full' );
}
add_action( 'after_setup_theme', 'vl_default_image_settings' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment