Skip to content

Instantly share code, notes, and snippets.

@aderaaij
Last active April 3, 2024 20:11
Show Gist options
  • Save aderaaij/6767503 to your computer and use it in GitHub Desktop.
Save aderaaij/6767503 to your computer and use it in GitHub Desktop.
Wordpress - Move yoast seo boxes to bottom of post/page
// Move Yoast to bottom
function yoasttobottom() {
return 'low';
}
add_filter( 'wpseo_metabox_prio', 'yoasttobottom');
@dieppon
Copy link

dieppon commented Aug 22, 2022

using on WP 6.0.1 with Yoast 19.5.1.

Moving the meta from the content area, will break the primary term feature:

An error occurred loading the Yoast SEO primary taxonomy picker.

@ceccaHF
Copy link

ceccaHF commented Aug 25, 2022

Great, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment