Created
January 19, 2022 22:06
-
-
Save joshuafredrickson/a02cd170a09032c63e4f0642734abe96 to your computer and use it in GitHub Desktop.
Move All In One SEO (AIOSEO) metabox to bottom of the page
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 All In One SEO (AIOSEO) metabox to bottom of the page. | |
* Drop this in your functions.php file or wherever appropriate. | |
* | |
* @return string | |
*/ | |
add_filter( 'aioseo_post_metabox_priority', function ($priority) { | |
return 'low'; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment