Created
January 19, 2017 22:11
-
-
Save fugudesign/6363b61eeeec153fbcdfcdf2765569ed to your computer and use it in GitHub Desktop.
Move the Yoast (WPSEO) metabox to the bottom of post edit screen
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
function lower_wpseo_priority( $html ) { | |
return 'low'; | |
} | |
add_filter( 'wpseo_metabox_prio', 'lower_wpseo_priority' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment