Last active
August 29, 2015 14:20
-
-
Save kittenlane/abb07c88d7311cdc8e23 to your computer and use it in GitHub Desktop.
Move Yoast SEO metabox to bottom
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
//* Move Yoast metabox to bottom | |
add_filter( 'wpseo_metabox_prio', 'metaboxbottom'); | |
function metaboxbottom() { | |
return 'low'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment