Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Created July 22, 2016 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kaiderella/18718f86a0282f0cb9be3bbd49f42136 to your computer and use it in GitHub Desktop.
Save Kaiderella/18718f86a0282f0cb9be3bbd49f42136 to your computer and use it in GitHub Desktop.
Remove Image Link WordPress
function wpb_imagelink_setup() {
$image_set = get_option( 'image_default_link_type' );
if ($image_set !== 'none') {
update_option('image_default_link_type', 'none');
}
}
add_action('admin_init', 'wpb_imagelink_setup', 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment