Move Yoast SEO Metabox To Bottom of Post Edit Screen – WordPress


About The Author
Cabe Nolan is the founder of WP Cover where he shares his insight into WordPress, development, & entrepreneurship. Outside of WPCover, Cabe continues to run a successful WordPress development firm, Bold City Design as well as a few high profile websites, Arrivala, Two Way Resume, Dock Skipper, and a successful outdoors brand, DolfinPack.







Move Yoast SEO Metabox To Bottom of Post Edit Screen – WordPress

Quick code snippet for your Saturday morning.  I had a client asking about the Yoast Meta box and how her editors often missed specific WordPress custom fields because they did not scroll past the Yoast box to find them.  The client needed a way to push the Yoast SEO box all the way to bottom on the Post (or custom post type) edit/add pages.  Luckily, it was a very simply fix.  Add the following code snippet to your active themes functions.php file:

// Move Yoast to bottom
function wpcover_move_yoast() {
	return 'low';
}
add_filter( 'wpseo_metabox_prio', 'wpcover_move_yoast');

There you have it! Refresh your post edit or add new page and the Yoast SEO meta box should now be at the very bottom of the page. Happy weekend!


Share Your Thoughts

Leave a Reply

Your email address will not be published.


Related Stuff You Might Like







WordPress News, Tips, & Code Snippets

Join the WP Cover mailing list and get wordpress news, tips, code snippets, security warnings, and more delivered right to your inbox.  We won't flood your inbox, newsletters typically go out every 1-2 weeks unless it involves an important security release.

You have Successfully Subscribed!