mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
11 lines
307 B
Text
11 lines
307 B
Text
function disable_post_content_iframe_lazy_loading( $default, $tag_name, $context ) {
|
|
if ( 'iframe' === $tag_name && 'the_content' === $context ) {
|
|
return false;
|
|
}
|
|
return $default;
|
|
}
|
|
add_filter(
|
|
'wp_lazy_loading_enabled',
|
|
'disable_post_content_iframe_lazy_loading',
|
|
10,
|
|
3
|