How would you make a meta box sit above all other meta boxes at all times in a custom post type?
For example:
add_meta_box (
'aisis-meta-id',
'Mini Feeds Information',
array(&$this, 'aisis_mini_feeds_info'),
'mini-feed',
'advanced',
'high'
);
Create a meta box, how ever it only appears after ALL other meta boxes, be they plugin or system wide. I need my meta box to sit directly under the editor at all times.
Change
advanced
tonormal
, this will at least move it up above some others.However, there’s no guarantee you get the top spot, because a user can still drag and drop metaboxes around, or a core metabox or one added by another plugin might believe it is more important than yours.
There’s no way for WordPress could offer the top spot as an option, as what would happen when two plugins decided they both wanted it?
p.s. here’s how to move Yoast’s SEO plugin metabox down: