It is possible to use this as a permalink for a post: /%category%/%postname%/ But lets say I’ve created a taxonomy called “artist”. I’d like to use this for my...
The obvious way is to iterate through the resulting array of IDs, get_post for each and test against post_status == 'publish'. But I wonder whether this could cause memory...
I have a custom taxonomy, called albums. I need to be able to text search the taxonomy term title, obviously this isn’t default WP Search. Just wondering how I’d...
I’ve created a custom taxonomy. It’s working just as expected, aside from it is not showing in the get_taxonomies array. get_terms function returns an invalid taxonomy error. I want...
I have a taxonomy of menus i.e. Coffee, Tea, Sandwiches, Cakes etc. I want to add more information ‘about’ the taxonomy such as an image that represents it alongside...
So I have a custom query, in which I’m displaying some results posts of a custom post type called “staff”. This custom post type is linked to a custom...
I have registered three custom taxonomies. All three of these custom taxonomies are attached to my custom post type. There is only one taxonomy out of the three registered,...
How can I retrieve slug of current taxonomy being viewed in taxonomy template? I tried to codex but found nothing on taxonomy template page. To further explain, lets say...
Is there a way to add a TinyMCE editor to the taxonomy description field on the term editing pages? The solution here (Can you add the visual editor to...
I have three custom post types, each has its own taxonomy like product_cat, event_cat, media_cat. I labeled all of them with the word “Category” like: register_taxonomy("product_cat", "product", array( "labels"...