mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
5 lines
138 B
Text
5 lines
138 B
Text
add_filter( 'aioseo_show_in_admin_bar', 'aioseo_disable_admin_bar' );
|
|
|
|
function aioseo_disable_admin_bar( $enabled ) {
|
|
return false;
|
|
}
|