Disable meta views from being outputted on category archive pages in All in One SEO

Disable meta views from being outputted on category archive pages in All in One SEO on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'aioseo_meta_views', 'aioseo_filter_meta_views' );

function aioseo_filter_meta_views( $views ) {
   if ( is_category() ) {
      return [];
   }
   return $views;
}

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