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' ); }