mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
8 lines
178 B
Text
8 lines
178 B
Text
add_filter( 'aioseo_meta_views', 'aioseo_filter_meta_views' );
|
|
|
|
function aioseo_filter_meta_views( $views ) {
|
|
if ( is_category() ) {
|
|
return [];
|
|
}
|
|
return $views;
|
|
}
|