Created
April 11, 2019 17:32
-
-
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.
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 | |
| /** | |
| * 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' ); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The full explanation is here.