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');
@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