mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
8 lines
179 B
Text
8 lines
179 B
Text
add_filter( 'aioseo_disable', 'aioseo_disable_page_output' );
|
|
|
|
function aioseo_disable_page_output( $disabled ) {
|
|
if ( is_page() ) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|