mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
6 lines
148 B
Text
6 lines
148 B
Text
add_filter('autoptimize_js_include_inline', function( $state ) {
|
|
if ( is_page( 'YOUR_PAGE_SLUG_HERE' ) ) {
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|