How to Exclude Posts/Pages from Autoptimize in WordPress?

add_filter("autoptimize_filter_noptimize", "wps_ao_noptimize", 10, 0);
function wps_ao_noptimize() {
  if (strpos($_SERVER["REQUEST_URI"], "sustainability") !== false) {
    return true;
  } else {
    return false;
  }
}
 

Subscribe To Our Newsletter

Join our mailing list to receive the latest news and updates from our team.

You have Successfully Subscribed!

Share This