Skip to content

Instantly share code, notes, and snippets.

@moxdev
Created February 14, 2019 15:01
Show Gist options
  • Save moxdev/f11173617e0e7a62ab620ee04ce9b4e3 to your computer and use it in GitHub Desktop.
Save moxdev/f11173617e0e7a62ab620ee04ce9b4e3 to your computer and use it in GitHub Desktop.
Move Yoast to the Bottom of the Page #wp
add_filter( 'wpseo_metabox_prio', 'yoast_to_bottom' );
/**
* Move Yoast to bottom of page in WP backend
*/
function yoast_to_bottom() {
return 'low';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment