Viewing 1 replies (of 1 total)
  • You can do this by updating option image_default_link_type

    Place this in your theme’s functions.php file.

    function change_imgage_default_link() {
            //You may change it media,file,post...
            update_option('image_default_link_type','none');
    }
    add_action('after_setup_theme', 'change_imgage_default_link');
Viewing 1 replies (of 1 total)
  • The topic ‘Force "Link To" as "None" In Media’ is closed to new replies.