Get custom taxonomy description with paragraph tags
I am printing the description for a custom taxonomy of artists with the following code: $terms = get_the_terms( $post->ID, ‘artists’); if ( $terms … Read more
I am printing the description for a custom taxonomy of artists with the following code: $terms = get_the_terms( $post->ID, ‘artists’); if ( $terms … Read more
I’ve got the following code in my team-type.php file which I’m using to create a custom taxonomy for a member information: function create_team_taxonomies() … Read more
Is there a way to avoid WordPress “flattening” the category tree when a child category is selected? This applies to both custom taxonomies … Read more
I am writing a custom loop query to filter through a custom post type and custom taxonomy. I have replaced any variables with … Read more
Personally I really dislike how wordpress shows all the “popular terms” in different sizes on the taxonomy add/edit screen in the admin area. … Read more
I need to add about 50 properties to a product, such as heigh, width, location etc. I created custom taxonomies for every property … Read more
Should I register both parent and child as ‘hierarchical’ => true, if there’s no grandchild? If “Movie” is the top level taxonomy, when … Read more
I need wp_query with more than one taxonomies and terms which are dynamic. Multiple terms to one taxonomies each. Like If one taxonomy … Read more
I have a custom post type and a taxonomy which allows the user to select which category the post is in. Here is … Read more
I created a custom post type called “portfolio” for posts. When navigating to a post the URL shows as www.mysite/?portfolio=some-post-title In footer.php I … Read more