cmb2-taxonomy
cmb2-taxonomy copied to clipboard
Custom metaboxes for taxonomies
Hey having trouble getting the image to show up on the front end using cmb2 taxonomy. I have used regular cmb2 for other stuff and it works great. I have...
Im removing this, I posted this on the wrong plugin.
Is this plugin under active development? Is there any plans to use the _termmeta table now that WordPress natively supports Term Meta?
It will be great to have the ability to set position for metabox. ``` add_action( "{$taxonomy_name}_edit_form", array($this, 'render_meta_fields_edit_form'), 10, 2 ); ```
Is there a way to use get_terms and filter by custom taxonomy field? Something like that : ``` $args = array( 'hide_empty' => false, 'meta_query' => array( 'key' => 'segment',...
Added network support by creating tables for all blogs if multisite install and activation is network wide, also creates table when new network blog is created
i have try it, and realise there is no wp_termmeta on my database. so anyone who want to try this need to create their custom database first like: ``` sql...
A Category is a taxonomy type. Tested it with category listed as the object type, and it does not render any inputs.
Looks like you're using the deprecated filter. Can you please update to use the new API. It is demonstrated in the [example-functions.php](https://github.com/WebDevStudios/CMB2/blob/master/example-functions.php) file. Related: https://github.com/WebDevStudios/CMB2/issues/397 Let me know you have...