Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save bookchiq/0c2bdd80576285accff11349754e414f to your computer and use it in GitHub Desktop.

Select an option

Save bookchiq/0c2bdd80576285accff11349754e414f to your computer and use it in GitHub Desktop.
Re-position "Quick Page/Post Redirect" plugin meta box to low priority. Just change "low" to "high" to put it at the top.
<?php
/**
* Filter Quick Page/Post Redirect Metabox Priority
* @author Sarah Lewis
* @link
*/
function sl_filter_quick_page_post_redirect_metabox_priority() {
return 'low'; // The options are 'high', 'core', 'default' or 'low' (plugin default is 'high').
}
add_filter( 'appip_metabox_priority_filter', 'sl_filter_quick_page_post_redirect_metabox_priority' );
@bookchiq
Copy link
Copy Markdown
Author

The full explanation is here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment