If you want to push the Yoast SEO plugin metabox down – particularly if using other plugins like Advanced Custom Fields for building content – then you can add this little snippet to push it down:
// Move Yoast to bottom
function yoastpushbottompro() {
return 'low';
}
add_filter( 'wpseo_metabox_prio', 'yoastpushbottompro');