• Hi everyone,

    how to change the default settings of “Add Media”?
    In my case I need to set that every new added image links to “Media File” opening the link in a new tab.

    Thanks in advance.

Viewing 1 replies (of 1 total)
  • Try adding this code to your theme’s, or preferably Child Theme’s, functions.php file, or your own simple plugin:

    function my_default_link_prop( $settings ) {
        $settings['defaultProps']['link'] = 'none';
    
        return $settings;
    }
    add_filter( 'media_view_settings', 'my_default_link_prop' );

Viewing 1 replies (of 1 total)

The topic ‘"Add Media" default preferences’ is closed to new replies.