pierrebalian
9/25/2017 - 5:43 PM

Function to keep yoast meta boxes at the very bottom of the edit page. Goes in functions.php

Function to keep yoast meta boxes at the very bottom of the edit page. Goes in functions.php

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