Skip to content

Instantly share code, notes, and snippets.

@nrezane
nrezane / yoast
Created December 10, 2020 08:14 — forked from aderaaij/yoast
Wordpress - Move yoast seo boxes to bottom of post/page
// Move Yoast to bottom
function yoasttobottom() {
return 'low';
}
add_filter( 'wpseo_metabox_prio', 'yoasttobottom');