Created
September 3, 2019 09:14
-
-
Save tiborp/a9a47d4657e3bd4ac754401c4b840c16 to your computer and use it in GitHub Desktop.
Move Yoast 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
<?php | |
// Move Yoast Metabox to bottom of edit screen | |
function move_yoast_to_bottom() { | |
return 'low'; | |
} | |
add_filter( 'wpseo_metabox_prio', __NAMESPACE__ . '\move_yoast_to_bottom'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment