apply_filters( 'wp_lazy_loading_enabled', bool $default, string $tag_name, string $context )

Filters whether to add the loading attribute to the specified tag in the specified context.


Parameters

$default bool
Default value.
$tag_name string
The tag name.
$context string
Additional context, like the current filter name or the function name from where this was called.

Top ↑

Source

File: wp-includes/media.php. View all references

return (bool) apply_filters( 'wp_lazy_loading_enabled', $default, $tag_name, $context );


Top ↑

Changelog

Changelog
Version Description
5.5.0 Introduced.

Top ↑

User Contributed Notes

  1. Skip to note 1 content
    Contributed by GenerateWP

    To disable lazy loading use:

    add_filter( 'wp_lazy_loading_enabled', '__return_false' );

You must log in before being able to contribute a note or feedback.