Skip to content

Instantly share code, notes, and snippets.

@tiborp
Created September 3, 2019 09:14
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 tiborp/a9a47d4657e3bd4ac754401c4b840c16 to your computer and use it in GitHub Desktop.
Save tiborp/a9a47d4657e3bd4ac754401c4b840c16 to your computer and use it in GitHub Desktop.
Move Yoast Metabox to bottom
<?php
// Move Yoast Metabox to bottom of edit screen
function move_yoast_to_bottom() {
return 'low';
}
add_filter( 'wpseo_metabox_prio', __NAMESPACE__ . '\move_yoast_to_bottom');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment