Skip to content

Instantly share code, notes, and snippets.

@wesellhost
Forked from barbwiredmedia/functions.php
Created March 1, 2020 08:17
Show Gist options
  • Select an option

  • Save wesellhost/5c161433749cb6fb3e62b1d0a8faf5ee to your computer and use it in GitHub Desktop.

Select an option

Save wesellhost/5c161433749cb6fb3e62b1d0a8faf5ee to your computer and use it in GitHub Desktop.
Wordpress SEO Yoast Order meta box. This will change the priority of Yoasts meta box and move it to the bottom of all pages / posts.
// Move Yoast Meta Box to bottom
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