mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
https://stackoverflow.com/questions/53184237/how-can-i-exclude-two-pages-from-optimization-using-autoptimize-snippet-given-be https://wordpress.org/support/topic/disable-autoptimize-for-certain-pages/
9 lines
266 B
Text
9 lines
266 B
Text
add_filter('autoptimize_filter_noptimize','my_ao_noptimize',10,0);
|
|
|
|
function my_ao_noptimize() {
|
|
if (strpos($_SERVER['REQUEST_URI'],'term1')!==false || strpos($_SERVER['REQUEST_URI'],'term2')!==false) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|