Created
October 20, 2014 17:07
-
-
Save wilsonwc/44c036909dfcee657869 to your computer and use it in GitHub Desktop.
Put Yoast SEO metabox below all other boxes
This file contains 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', 'filter_yoast_seo_metabox' ); | |
function filter_yoast_seo_metabox() { | |
return 'low'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment