Disable the SEO output on pages in All in One SEO

Disable the SEO output on pages in All in One SEO on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'aioseo_disable', 'aioseo_disable_page_output' );

function aioseo_disable_page_output( $disabled ) {
   if ( is_page() ) {
      return true;
   }
   return false;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.