Skip to content

Instantly share code, notes, and snippets.

@joshuafredrickson
Created January 19, 2022 22:06
Show Gist options
  • Save joshuafredrickson/a02cd170a09032c63e4f0642734abe96 to your computer and use it in GitHub Desktop.
Save joshuafredrickson/a02cd170a09032c63e4f0642734abe96 to your computer and use it in GitHub Desktop.
Move All In One SEO (AIOSEO) metabox to bottom of the page
<?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