Skip to content

Instantly share code, notes, and snippets.

@jacobwise
Last active June 5, 2018 16:39
Show Gist options
  • Save jacobwise/9cc6288d78c96e22e63a to your computer and use it in GitHub Desktop.
Save jacobwise/9cc6288d78c96e22e63a to your computer and use it in GitHub Desktop.
Re-position Yoast SEO plugin to high priority. Just change high to low to put it at the bottom.
/**
*
* Filter Yoast SEO Metabox Priority
* @author Jacob Wise
* @link http://swellfire.com/code/filter-yoast-seo-metabox-priority
*
*/
add_filter( 'wpseo_metabox_prio', 'jw_filter_yoast_seo_metabox' );
function jw_filter_yoast_seo_metabox() {
return 'high';
}
@pierrerocket
Copy link

Doesnt seem to be working anymore.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment