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
219 B
Text
8 lines
219 B
Text
add_filter( 'aioseo_flyout_menu_enable', 'aioseo_filter_flyout_menu_enable' );
|
|
function aioseo_filter_flyout_menu_enable( $enabled ) {
|
|
if ( ! aioseo()->access->isAdmin() ) {
|
|
$enabled = false;
|
|
}
|
|
|
|
return $enabled;
|
|
}
|