wp_omit_loading_attr_threshold

wp_omit_loading_attr_threshold

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('wp_omit_loading_attr_threshold') is found 1 times:

  • /wp-includes/media.php line 5969
    		 * @since 6.3.0 The default threshold was changed from 1 to 3.
    		 *
    		 * @param int $omit_threshold The number of media elements where the `loading` attribute will not be added. Default 3.
    		 */
    		$omit_threshold = apply_filters( 'wp_omit_loading_attr_threshold', 3 );
    	}
    
    	return $omit_threshold;
    }
    
    /**