Skip to content

Instantly share code, notes, and snippets.

@cedriccharles4
Last active November 12, 2017 00:04
Show Gist options
  • Save cedriccharles4/8cbc533b7e02307cb2b64b809554e359 to your computer and use it in GitHub Desktop.
Save cedriccharles4/8cbc533b7e02307cb2b64b809554e359 to your computer and use it in GitHub Desktop.
Yoast SEO : move the metabox in last position
<?php
//Move the YOAST SEO metabox in last position
add_filter( 'wpseo_metabox_prio', 'noo_move_yoast_seo_metabox' );
function noo_move_yoast_seo_metabox() {
return 'high';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment