Custom taxonomy does not display
-
I’m using version 1.4.3 of the plugin, and a custom taxonomy that I’ve defined and used elsewhere in the site does not display when I select a media item to edit.
Here’s what I’ve used to define that taxonomy:
$labels = array( 'name' => _x( 'Destinations', 'destinations' ), 'singular_name' => _x( 'Destination', 'destinations' ), 'search_items' => _x( 'Search Destinations', 'destinations' ), 'popular_items' => _x( 'Popular Destinations', 'destinations' ), 'all_items' => _x( 'All Destinations', 'destinations' ), 'parent_item' => _x( 'Parent Destination', 'destinations' ), 'parent_item_colon' => _x( 'Parent Destination:', 'destinations' ), 'edit_item' => _x( 'Edit Destination', 'destinations' ), 'update_item' => _x( 'Update Destination', 'destinations' ), 'add_new_item' => _x( 'Add New Destination', 'destinations' ), 'new_item_name' => _x( 'New Destination', 'destinations' ), 'separate_items_with_commas' => _x( 'Separate destinations with commas', 'destinations' ), 'add_or_remove_items' => _x( 'Add or remove destinations', 'destinations' ), 'choose_from_most_used' => _x( 'Choose from the most used destinations', 'destinations' ), 'menu_name' => _x( 'Destinations', 'destinations' ), ); $args = array( 'labels' => $labels, 'public' => true, 'show_in_nav_menus' => true, 'show_ui' => true, 'show_tagcloud' => false, 'show_admin_column' => true, 'hierarchical' => true, 'rewrite' => array( 'slug' => 'destinations', 'hierarchical' => true ), 'query_var' => true ); register_taxonomy( 'destinations', array('hotel','restaurant','shop','activity','article','offer','insidertrip'), $args );
Under the general settings for the plugin, I’ve selected “Support” and “Inline Edit” for “Destinations”. I’ve tried this with “Categories” and “Destinations” checked for “List Filter”
I read in an earlier thread about a problem with version 1.4 of the plugin not displaying custom taxonomy correctly, so I’m not sure what I’ve missed, unless my taxonomy registration has an error in there.
https://www.ads-software.com/plugins/media-library-assistant/
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Custom taxonomy does not display’ is closed to new replies.