Skip to content
This repository has been archived by the owner on Dec 23, 2020. It is now read-only.

Fix priority #12

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wp-lazy-loading.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function _wp_lazy_loading_initialize_filters() {
// The following filters would be merged into core.
foreach ( array( 'the_content', 'the_excerpt', 'comment_text', 'widget_text_content' ) as $filter ) {
// After parsing blocks and shortcodes.
add_filter( $filter, 'wp_add_lazy_load_attributes', 25 );
add_filter( $filter, 'wp_add_lazy_load_attributes', 8 );
}

// The following filters are only needed while this is a feature plugin.
Expand Down