How to move the Yoast SEO Meta Box to the bottom

Place this in your theme’s functions.php file.

/*-------------------------------------
  Move Yoast to the Bottom
---------------------------------------*/
function yoasttobottom() {
  return 'low';
}
add_filter( 'wpseo_metabox_prio', 'yoasttobottom');