Skip to content

Instantly share code, notes, and snippets.

@fugudesign
Created January 19, 2017 22:11
Show Gist options
  • Save fugudesign/6363b61eeeec153fbcdfcdf2765569ed to your computer and use it in GitHub Desktop.
Save fugudesign/6363b61eeeec153fbcdfcdf2765569ed to your computer and use it in GitHub Desktop.
Move the Yoast (WPSEO) metabox to the bottom of post edit screen
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