Question

I want to add few custom fields to categories. So I am looking for something like add_meta_box but for categories.

Is there any WP function like that for categories?

Was it helpful?

Solution

You can add content to the category edit pages by hooking into the edit_category_form_fields (still in the form table) or edit_category_form (outside the table but before the submit button). Similar hooks exist for tags or custom taxonomies, check the source. To handle these extra values you need to find a good hook yourself, make sure you handle it before editedtag redirects you.

There are no clean meta box handlers, you need to write most code yourself. But please let us know how you did it, it might be interesting for others!

OTHER TIPS

it's pretty alpha... but this was supposed to be a branch off of the awesome WP_Alchemy which kicks butt at regular metaboxes

https://github.com/farinspace/wpalchemy/tree/taxonomy

this hook works only for original WP categories. Is there any solution/hook how to add custom form fields to custom category (taxonomy) type? Thanx

Licensed under: CC-BY-SA with attribution
Not affiliated with wordpress.stackexchange
scroll top