Created
February 14, 2019 15:01
-
-
Save moxdev/f11173617e0e7a62ab620ee04ce9b4e3 to your computer and use it in GitHub Desktop.
Move Yoast to the Bottom of the Page #wp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'wpseo_metabox_prio', 'yoast_to_bottom' ); | |
/** | |
* Move Yoast to bottom of page in WP backend | |
*/ | |
function yoast_to_bottom() { | |
return 'low'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment