wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_iframe_tag_add_loading_attr › WordPress Filter Hooks

Since5.7.0
Deprecatedn/a
apply_filters( 'wp_iframe_tag_add_loading_attr', $value, $iframe, $context )
Parameters: (3)
  • () value The `loading` attribute value. Returning a falsey value will result in the attribute being omitted for the iframe.
    Required: Yes
  • () iframe The HTML `iframe` tag to be filtered.
    Required: Yes
  • () context Additional context about how the function was called or where the iframe tag is.
    Required: Yes
Defined at:
Codex:

Filters the `loading` attribute value to add to an iframe. Default 'lazy'.

Returning `false` or an empty string will not add the attribute. Returning `true` will add the default value.




Source

$value = apply_filters( 'wp_iframe_tag_add_loading_attr', $value, $iframe, $context );