Set Context/Priority of Meta_Box Based on Registered Taxonomy
-
Hello, Talented WP Folks!
I’ve created a custom post type and attendant taxonomies in WP 3.0.1. All I want to do now is set the context/priority for the meta box generated for one of the new taxonomies. By default, an hierarchical taxonomy is placed on the
'side', 'low'
of the admin menu. I’d like for it to sit right under the'title'
field without my users having to manipulate the GUI.I believe the solution lies in
register_meta_box_cb
, and I was able to remove the default meta box and add a new one in the right position ('normal', 'high'
); however, I couldn’t get the taxonomy to display in this new meta box–in other words, I’m not trying to add a custom meta box…I just want to reposition the registered taxonomy’s meta box, and I have read that to do so one has to use theremove_meta_box
andadd_meta_box
functions.So, my question is: is that the right/only way? Or is there a way to set the context/priority the meta_box of a registered taxonomy much more elegantly?
Thanks in advance for any help you can provide!
Cheers,
Steve
- The topic ‘Set Context/Priority of Meta_Box Based on Registered Taxonomy’ is closed to new replies.