Skip to content

Instantly share code, notes, and snippets.

@JohnBunka
Created October 12, 2017 22:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JohnBunka/6d35fdc6190fb4a740e2dd576be4845f to your computer and use it in GitHub Desktop.
Save JohnBunka/6d35fdc6190fb4a740e2dd576be4845f to your computer and use it in GitHub Desktop.
Move the Yoast SEO Meta Box to the Bottom of the edit screen in WordPress
/*-------------------------------------
Move the Yoast SEO Meta Box to the Bottom of the edit screen in WordPress
---------------------------------------*/
function yoasttobottom() {
return 'low';
}
add_filter( 'wpseo_metabox_prio', 'yoasttobottom');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment