wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_iframe_tag_add_loading_attr › WordPress Filter Hooks

Seit5.7.0
Veraltetn/v
apply_filters( 'wp_iframe_tag_add_loading_attr', $value, $iframe, $context )
Parameter: (3)
  • () value The `loading` attribute value. Returning a falsey value will result in the attribute being omitted for the iframe.
    Erforderlich: Ja
  • () iframe The HTML `iframe` tag to be filtered.
    Erforderlich: Ja
  • () context Additional context about how the function was called or where the iframe tag is.
    Erforderlich: Ja
Definiert in:
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.




Quellcode

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