Main Content

Move Yoast Metabox holder

Add the following code to your functions.php

add_filter( 'wpseo_metabox_prio', 'move_yoast_meta_box' );
function move_yoast_meta_box() {
	return 'low';
}