When your website means business.

PHP, WP/CP | Type: PHPRankMath Functions

Move RankMath metabox to bottom of the edit screen

//change the metabox display location to bottom
function rank_math_change_metabox_priority() {
    return 'low';
}
add_filter( 'rank_math/metabox/priority', 'rank_math_change_metabox_priority' );

Remove node from admin bar

//evo-better-cms: remove menu items from admin bar
add_action( 'admin_bar_menu', 'wpss_admin_bar_menu', 9999 );
function wpss_admin_bar_menu() {
global $wp_admin_bar;
    $wp_admin_bar->remove_menu( 'rank-math' );
}

Reference Links

Menu
We use cookies in order to give you the best possible experience on our website. By continuing to use this site, you agree to our use of cookies.
Accept
Cookies Notice