Yoast SEO: Lower the Metabox Priority
Moves the Yoast SEO metabox lower on the post-edit screen by setting its priority to low, so it does not crowd the top of the editor sidebar.
PHPby SnipCraft
php
<?php
if ( ! function_exists( 'scseed_yoast_lower_metabox_priority' ) ) {
function scseed_yoast_lower_metabox_priority( $priority ) {
if ( ! defined( 'WPSEO_VERSION' ) ) {
return $priority;
}
return 'low';
}
add_filter( 'wpseo_metabox_prio', 'scseed_yoast_lower_metabox_priority' );
}#admin#editor#metabox#seo#yoast-seo