Move the Yoast Seo Meta box to the bottom of admin pages
//Change metabox priority in admin for Yoast Seo
function yoast_metabox_priority() {
// Accepts 'high', 'default', 'low'. Default is 'high'.
\!h return '__low__';
}
add_filter( 'wpseo_metabox_prio', 'yoast_metabox_priority' );