Global Meta Box Order is a WordPress app, with a 5.0 average rating from 5 reviews, as of July 9, 2026.
Global Meta Box Order is a WordPress Plugin Directory app by nosurs. With a rating of 5.0★ from 5 reviews.
AppRanks data: Global Meta Box Order ranks #0 in Admin on WordPress Plugin Directory, placing it in the top 1% of that category.
AppRanks verdict
Generated from live marketplace data — refreshed daily
Global Meta Box Order is a category-leading WordPress app with a limited review volume. It is listed in the Admin category on WordPress Plugin Directory, which AppRanks treats as the canonical taxonomy node for ranking and competitor comparison. 5 reviews put it in the early-traction tier — useful for early-stage stores willing to be on the leading edge. Early-traction review counts are sensitive to single launch periods or feature events, so a 30-day re-check before bigger commitments often resolves whether the trend is sustained. Paid-only pricing means evaluating fit on the marketplace listing or via the developer's documentation before installing. AppRanks tracks rating, review count, pricing tier, and category position daily — the figures on this page reflect the most recent scrape from the canonical WordPress Plugin Directory listing.
Pros
- +High average rating (5.0★) signals consistent merchant satisfaction
- +Published by nosurs — established developer track record
Cons
- −Limited review base (5) — ratings can shift significantly with new feedback
Looking to switch from Global Meta Box Order?
See Global Meta Box Order's alternatives ranked by audit score, rating, and review velocity.
How Global Meta Box Order works
Show full descriptionShow less
Intuitively harmonize meta box positions and screen column layout for all backend users of your WordPress installation.
Quick Overview
Install and activate the plugin
Switch to a post, a page, a custom post type, or the dashboard
Change the order and position of a meta box (or all of them)
Change the column layout
Switch to a different user (maybe with the help of the User Switching plugin)
See your changes applied
Installation Download and unpack, then move the folder ‘global-meta-box-order’ into your ‘plugins’ folder. Head over to your WordPress installation and activate the plugin in the admin area.
Rollback The plugin doesn’t write anything to the database, it just reads. So it never touches any user settings, but instead filters them on a per request basis. Though all applied changes appear to be permanent from a user’s perspective, they are not. Just deactivate the plugin and see all changes disappear. Activate it again, and they will all be reapplied.
How It Works The plugin operates on a blueprint user whose screen settings for meta boxes (visibility, position and ordering), and column layout are cloned for all other backend users on the fly.
By default, this blueprint user is the first admin user found, so you’ll need to be logged in as that user to globally change screen settings. For how to change the default blueprint user as well as other settings, please refer to the Configuration section below.
Where It Works By default, the plugin kicks in when a user:
edits a post
edits a page
edits a custom post type
hits the dashboard
What It Changes It will always change
the meta boxes visibility, ordering, and column positions
the column layout
When told so, it will also
remove the screen options box
immobilize all boxes, so they can’t be moved around by your users anymore
Usage Log in as your blueprint user. By default, the is the first admin user found in your system.
Select an editing screen (post, page, custom post type) or the dashboard, move the meta boxes around, change their screen settings and the screen’s column layout. Switch to some user to review your settings, switch back to adjust them.
When done, you might want to lock your views down by removing the screen options box and by locking the boxes’ sort order. Your blueprint user, of course, wil not be affected by this.
Configuration The backend integration is kept to a minimum. No navigation entry, no options page, no entry in the database. Instead, the place to go to configure the plugin is your theme’s functions.php.
By the way: You don’t need to configure the plugin. As long as it finds an admin user, it will work just fine.
Preparation
Fire up an editor, load your functions.php, and copy and paste the following code into it. The idea is to have some sort of container to do the configuration in, but do it any way you like.
For brevity, we’ll assume the plugin is loaded and active, so we won’t check for that (see this nice write-up on QueryLoop on some ways to do it, though).
if (is_admin()) {
// The path to the configuation is rather long, so let's // make us a shorthand. class_alias('\GlobalMetaBoxOrder\Config', 'MetaBoxConfig');
// Add MetaBoxConfig below this line ... }
Now we are ready to add some of the configuration settings below to adjust the plugin’s default behaviour. You might also want to have a look at the example configuration near the end of this document.
Please keep in mind that you need to be logged in as any user but your blueprint user to see a setting applied. Again, the User Switching plugin might come in handy.
Screens To Operate On
By default, the plugin operates on the post, page, and custom post type editing screens, and the dashboard.
You can change this as follows:
// Operate on post and page screens only, leave the dashboard alone. // This will still include custom post types. MetaBoxConfig::$filter = array('post', 'page');
// Exclude custom post types MetaBoxConfig::$include_cpts = false;
// Allow custom post types... MetaBoxConfig::$include_cpts = true;
// ...but not all of them MetaBoxConfig::$exclude = array('acme_product');
MetaBoxConfig in the example above is assumed to be an alias to \GlobalMetaBoxOrder\Config as shown in the preparation section above.
Changing the Blueprint User
Register a function that returns a user id, like so:
MetaBoxConfig::$getBlueprintUserId = function () { return 1; };
Or, more involved:
MetaBoxConfig::$getBlueprintUserId = function () {
$user = get_user_by('slug', 'jane'); return $user ? $user->ID : false; };
MetaBoxConfig in the example above is assumed to be an alias to \GlobalMetaBoxOrder\Config as shown in the preparation section above.
Locking Views
By default, all users will be able to interact with the screen options box, and to move around the meta boxes themselves. There is a rationale behind it, but to cut things short, this is how you might want to change it:
// No screen options MetaBoxConfig::$remove_screen_options = true;
// Meta boxes can't be moved anymore MetaBoxConfig::$lock_meta_box_order = true;
MetaBoxConfig in the example above is assumed to be an alias to \GlobalMetaBoxOrder\Config as shown in the preparation section above.
Example Configuration
if (is_admin()) {
// Make sure plugin is active if (class_exists('\GlobalMetaBoxOrder\Config')) {
// Make a long name short. class_alias('\GlobalMetaBoxOrder\Config', 'MetaBoxConfig');
// Settings
MetaBoxConfig::$filter = array('post', 'page', 'dashboard'); // default MetaBoxConfig::$include_cpts = true; // default MetaBoxConfig::$getBlueprintUserId = function () { return 1; }; MetaBoxConfig::$exclude = array('acme_product'); MetaBoxConfig::$remove_screen_options = true; MetaBoxConfig::$lock_meta_box_order = true; } }
On Moving the WYSIWYG Editor The position of WordPress’ WYSIWYG editor is fixed, and can’t be changed out of the box (mostly because it lacks a box around it). There are reasons for this, but if you want to have a positionable editor anyway, you might want to have a look at our very own Movable Editor plugin.
If, on the other hand, if you want to place one specific box above the editor, you might want to check out this answer on stackexchange.
Category rankings
As of Jul 9, 2026- Admin#0of 620Top 1%
- Custom#0of 52Top 1%
- Customization#0of 18Top 1%
- Customize#0of 25Top 1%
- Post#0of 567Top 1%
See 90-day rank history for each category
Track daily rank changes, category shifts, and position volatility.
Competitors & alternatives
Global Meta Box Orderdoesn't have curated competitor matchups yet. Other tracked admin apps on WordPress:
Where Global Meta Box Order stands in the Admin category
Global Meta Box Order ranks #0 of 620 apps in the Admin category, placing it in the top 1% of the listing.
Frequently asked questions
What is Global Meta Box Order?
Global Meta Box Order is an app for WordPress. It currently holds a 5.0-star rating from 5 merchant reviews, and AppRanks has been tracking its public marketplace data on a daily refresh cycle. It is listed under the Admin category on AppRanks, where you can see its current category position, review-velocity trend, and how it compares against the top alternatives in the same space. Developed by nosurs.
Who uses Global Meta Box Order?
Currently around 300 active stores have installed Global Meta Box Order. Its review base is still building, which usually maps to early-stage merchants and stores piloting a new workflow. It is part of the Admin category on WordPress.