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.7.2

apply_filters('wp_iframe_tag_add_loading_attr') is found 1 times:

  • /wp-includes/media.php line 2361
    2357
    2358
    2359
    2360
    2361
    2362
    2363
    2364
    2365
    2366
    *                             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';
        }