wp_iframe_tag_add_loading_attr

wp_iframe_tag_add_loading_attr

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('wp_iframe_tag_add_loading_attr') is found 1 times:

  • /wp-includes/media.php line 2238
    	 *                             the attribute being omitted for the iframe.
    	 * @param string      $iframe  The HTML `iframe` tag to be filtered.
    	 * @param string      $context Additional context about how the function was called or where the iframe tag is.
    	 */
    	$value = apply_filters( 'wp_iframe_tag_add_loading_attr', $value, $iframe, $context );
    
    	if ( $value ) {
    		if ( ! in_array( $value, array( 'lazy', 'eager' ), true ) ) {
    			$value = 'lazy';
    		}