Custom Taxonomies Not Available As Checkable Items
-
Hi there, I have two custom taxonomies I’ve created in my functions.php file and neither of them appear in Display Widgets’ list of selectable items. I thought maybe I was missing an arg, but I tweaked them without success. Is there a trick to getting custom taxonomies to show up? Here’s an example of my code:
add_action( 'init', 'create_image_type_taxonomies', 0 ); function create_image_type_taxonomies() { register_taxonomy('image_type','post',array( 'public' => true, 'hierarchical' => false, 'labels' => $labels, 'show_ui' => true, 'update_count_callback' => '_update_post_term_count', 'query_var' => true, 'show_admin_column' => true, 'rewrite' => array( 'slug' => 'image-type' ), )); }
https://www.ads-software.com/extend/plugins/display-widgets/
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Custom Taxonomies Not Available As Checkable Items’ is closed to new replies.