I’m working on a site that will make use of a few custom taxonomies (for custom post types). I’ve chosen to make some of the taxonomies hierarchical because the method of inputting values (checking boxes) is more desirable for this site than the free-form input of non-hierarchical taxonomies. However, what I would really like is to be able to use radio button inputs instead of check boxes. Additionally, I’d like to remove the dropdown that is used to choose the parent item in the taxonomy.
Am I going about this the wrong way? Should I start with non-hierarchical taxonomies and modify the input methods on those instead? I’m completely open to input and will gladly answer any questions or supply more information if I can.
Sure thing, just use CSS and the
'admin_head'
hook to make it disappear. I believe this is what you are looking for?(source: mikeschinkel.com)
Just add the following to your theme’s
functions.php
file or to a.php
file of a plugin that you might be writing. Note that I included an'init'
hook to define the “Home” post type and the “Bath” taxonomy so others can more easily follow the example. Also note that if your taxonomy is named Baths” you’ll need to change the CSS selector to be#newbaths_parent
instead of#newbath_parent
:UPDATE
So it seems I missed the radio button part of the question. Unfortunately WordPress does not make this easy but you can make it happen by using PHP output buffering (via the
ob_start()
andob_get_clean()
functions.) Just find a hook before the metabox is output ('add_meta_boxes'
) and a hook after it is output ('dbx_post_sidebar'
) and then search the captured HTML for'checkbox'
and replace with'radio'
, echo it to the screen and yer done! Code follows:And the evidence:
(source: mikeschinkel.com)
or, if you’re lazy can use this plugin: Single Value Taxonomy UI
(I would’ve rather added this as a comment to Mike’s answer as it mostly does the same thing – but I can’t yet add comments)