Since WordPress 2.3, plugin and theme authors have had the ability to create custom taxonomies-- essentially specialized "categories"-- to help organize information.
2
votes
0answers
54 views
Add nonexisting pages to navigation
I want to include categories which are listed in a non-native WordPress table to display within the "normal" wp page navigation
(the table comes from WP-Filebase and is called ->prefix .wpfb_cats)
...
2
votes
0answers
67 views
How to specify URLS for custom posts & taxonomies
I've read a few posts about this, but can't find a clear answer :(
I have a custom post type called {ondemand}
Within the custom post, I have three taxonomies {speakers} and {categories} and ...
2
votes
0answers
212 views
Adding Custom Taxonomy Archive Link to Nav Menu Shows Up As (Invalid)
I have a custom post type "packages" with a taxonomy "Celebrations" that has a few terms in it.
When I try to add a link to my wp nav menu through Appearance > Menus and choosing the term I want from ...
2
votes
0answers
81 views
How to display term description in empty terms archive?
I list all terms from a taxonomy, even the empty ones, but I found out that at least in 2010/2011 themes I got a 404-like message, the default seems to only display the term description when at least ...
2
votes
0answers
50 views
How can I get WP to build a feed based on multiple taxonomy terms
Currently, the best way to get a feed generated for a single taxonomy term is by letting wordpress generate the content automatically:
example.com/wordpress/feed?tax_slug=term_slug
However, is ...
2
votes
0answers
104 views
Display Terms for all posts in Current Archive or Query
I am using the following code to create a list of linked terms belonging to a taxonomy.
<?php
$taxonomy = 'taxonomy_name';
$queried_term = get_query_var($taxonomy);
$terms = get_terms($taxonomy, ...
2
votes
0answers
99 views
Custom Post Type vs. User Page
I'm creating a multisite network for authors and readers and I want each blog author to create a user profile.
Ideally I would do this through a customized user admin area with a bunch of added ...
1
vote
0answers
17 views
limit post by a taxonomy in the admin
I have a site with authors from different locations. I have created a taxonomy called locations and has different countries (ex. Canada, Germany).
Each author need only to see his country's post for ...
1
vote
0answers
79 views
Custom Post Type with two hierarchical Custom Taxonomies: strategy to generate best permalink structure
this is my situation:
I have a Custom Post Type named struttura (like accommodation):
function custom_post_struttura() {
$labels = array(
'name' => _x( 'Strutture', ...
1
vote
0answers
21 views
Move terms from one taxonomy to another keeping the hierarchy
I am creating a custom taxonomy for the first time. I am trying to add a Location taxonomy. What I am actually trying to do is use existing categories to make them into locations.
I went into the ...
1
vote
0answers
35 views
RSS feed for dynamic set of custom taxonomies terms
I've got a CPT called 'Job' and three different taxonomies associated with it: location, type (permanent/contract) and expertise.
I've got a filter on the website that allows to search for jobs of ...
1
vote
0answers
22 views
Ordering taxonomies by rank
I'm using a function (copied and modified a bit from this question ) which displays taxonomies in order by rank with ยป between parent and child and | between terms, but I get a mistake in the html ...
1
vote
0answers
74 views
get_terms not returning any custom taxonomies
I have a custom post type called project with custom taxonomy called tagportfolio
I use this code to generate both:
add_action('init', 'project_custom_init');
/*-- Custom Post Init Begin --*/
...
1
vote
0answers
91 views
group posts by taxonomy terms
I have a site with two CPT's Projects and Artworks. I use scribu's posts2posts for connecting a bunch of artworks to each project.
In a single Project view, I want to display all connected artworks. ...
1
vote
0answers
134 views
get_query_var() not working in pre_get_posts
I'm using the pre_get_posts hook to order the main query on all my custom post type / taxonomy pages using a custom meta value. As part of the logic, I am trying to determine which taxonomy is ...
1
vote
0answers
94 views
Custom post query by taxonomy
I am using WordPress 3.5. My query is,
$args = array(
'post_type' => array('product', 'comic', 'magazine'),
'taxonomy' => 'Genres',
'term' => 'hot',
'posts_per_page' => ...
1
vote
0answers
56 views
Get Number of total Parent Categories for Custom Taxonomy
I am running an artist feature blog where I do interview artists from different countries and post some travel stuff from different countries.
I've set up a Custom Taxonomy called "Artist Name". This ...
1
vote
0answers
88 views
wp_query to display custom taxonomy terms
I have a custom post type named 'tours' and custom taxonomy named 'tourtypes' so i can categorize it into terms like 'cultural tour', 'sports tour' etc.
I'm not the original author of this theme and ...
1
vote
0answers
37 views
How to get a list of taxonomy terms which are being used only within certain post types?
I have a custom taxonomy called 'locations' which is being shared across a bunch of post types. I want to make a select field dropdown list of my locations (terms) to let users go to the taxonomy term ...
1
vote
0answers
47 views
need help with existing code showing subpages
I am helping a friend make some changes to a wordpress theme. At the moment displaying subpages works only for one parent and its subpages (the one with id 31), but we want it to work for all pages ...
1
vote
0answers
229 views
Display one post from each term in a custom taxonomy
I am trying to display a list which shows one post (and information about the person posting) from each custom taxonomy term.
The code I am using is as follows, but it is instead printing out EVERY ...
1
vote
0answers
31 views
How do I list terms of a custom taxonomy at i.e. domain.com/brands/
I have a custom post type 'products' with custom taxonomy 'brands'. My URL structure should be:
domain.com/brands - should list the brands
domain.com/brands/brand/ - should list products of the ...
1
vote
0answers
73 views
How to get posts which must match both custom taxonomies?
I have searched in the stackexchange site for an answer for this question. However, I did not find any posts can help me solve the following problem:
I have 2 custom taxonomies named tax1 and tax2
I ...
1
vote
0answers
57 views
Custom taxonomy and post type with same slug
I'm using the plugin "types" to register the custom taxonomy and post types,
and got 404 when using the same slug for them to display them hierarchy, like this:
site.com/tax //taxonomy archive
...
1
vote
0answers
89 views
Loosing Nav Active State in Menu
In the following section:
http://www.zimmernutrition.com.php53-23.ord1-1.websitetestlink.com/learning-center/
In the sidebar, if you click "Health Articles" and click one of the categories, the ...
1
vote
0answers
161 views
Front-End Custom Taxonomy Tag Select
The theme I am currently using features a front-end dashboard with posting and post editing, but the pre-existing submission form currently lacks a field to select one or more custom taxonomy tags ...
1
vote
0answers
120 views
Multi-select field for Taxonomy can't save the value
I'm trying to create a multi select field for Taxonomy pages,
and the problem is in saving all the selected values, for example if I choose couple of elements in the select field and save it, it will ...
1
vote
0answers
161 views
How can I unregister a custom taxonomy?
Problem: Homepage, tier 1, is able to load. Tier 2 pages always display the 404.php page. Tier 3 pages (subpages of Tier 2) load perfectly.
Gathered Information:
functions.php - At the end of the ...
1
vote
0answers
287 views
Wordpress custom taxonomy template not working
I installed theCartPress plugin and it created tcp_product_category taxonomy for tcp_product post type. I created a page with custom template to list all the product categories.
I can use ...
1
vote
0answers
118 views
dropdowboxes with pre-selected custom fields optios that filters the results according seach needs
In my site I have one custom post types with custom taxonomies:
custom post_type=listings --> Category --> Tags
Along with it, I have some custom fields to separate them by country, state, region.
...
1
vote
0answers
61 views
Listing custom terms in custom post meta
I'm trying to list custom taxonomy terms (using get_terms) from within the custom post meta code (i.e., via the add_meta_boxes action). I am getting "Invalid taxonomy" return from the call to ...
1
vote
0answers
76 views
Display all taxonomy, children and grandchildren with links
I have a post type named Package, and have 4 taxonomy associated with it, treks, tours, adrenaline and expeditions.
All of these taxonomies have chidren categories(eg. treks region 1, treks region ...
1
vote
0answers
185 views
List Posts For Terms Of A Custom Taxonomy For Any Post Type
The function is great and i am using this function with these filter to just display selected taxonomy term posts by id, but what result i am getting is like this
Child Taxonomy 1
- Child Taxonomy 1 ...
1
vote
0answers
49 views
Show fields based on taxonomy selection in editor
I use GD CPT plugin for custom taxonomies and post types.
I wonder if it is possible at all to change the fields user sees in the editor, based on something else (lets say a taxonomy).
Example:
I ...
1
vote
0answers
170 views
Using custom taxonomies to display hierarchical URLs?
I can't seem to get my custom taxonomy hierarchy working properly. It seems like many other have had this problem but none of their fixes work for me.
I would like to have a URL structure similar to ...
1
vote
0answers
158 views
Wordpress subpages to custom post types
I have created a CPT like this:
add_action( 'init', 'create_media' );
function create_media() {
$labels = array(
'name' => _x('Media', 'post type general name'),
'singular_name' => ...
1
vote
0answers
249 views
I want to load post content by categories using Ajax
I have question.
I would like to load post content, custom post, depends on category.
So first of all I would like to have drop down menu which will list all my categories then once user will select ...
1
vote
0answers
193 views
Query two taxonomies via URL or link (ie. not via specific template)?
I've been banging my head about this, and have created a work around, but it would be much nicer for my site's organisation if I could figure this out:
I want to be able to query posts across two ...
0
votes
0answers
8 views
Exporting Custom Taxonomies from backend
I have made custom taxonomies.When I see all subacategories inside one Category then the url is like this http://localhost/wpcompare/wp-admin/edit-tags.php?taxonomy=Colors&post_type=product .
...
0
votes
0answers
24 views
Custom Post Type Taxonomy Filters
Im really struggling to piece this functionality together, and hope someone can help or provide snippets to get me there.
So I'm creating a section on a website where stories are published, I have ...
0
votes
0answers
8 views
Rewrites with hierarchical taxonomies in permalink
I am attempting to create a hierarchical list of products in WordPress 3.5.1. For example if the custom post type product was in the custom taxonomy Outdoor > Garden Tools > Hoses, these would ...
0
votes
0answers
13 views
Custom URL writing with two taxonomies
I have two custom taxonomies: Brand and State
If I'm viewing the "Browse States" page, I'm wanting to use wp_list_categories() to list all the states (I can do this). The urls for each State being ...
0
votes
0answers
11 views
wp_insert_term is adding a term that has no name
I'm trying to insert a term for a custom taxonomy and a custom post type in Wordpress. The problem I'm running in to is that it successfully inserts a term, and at the right hierarchy level, but the ...
0
votes
0answers
14 views
Wordpress show posts from children terms of a taxonomy term
I was a little hard for me to explain what I'm trying to achieve in the title so I will explain my setup much more detailed here. I tried to find an answer searching here and other sites but couldn't ...
0
votes
0answers
16 views
How to save an integer as taxonomy term?
I've written a custom meta box such that taxonomy terms will always be integers (Unix timestamps), and I'd like to keep them as integers so I can sort these posts by their Unix Timestamp in the ...
0
votes
0answers
26 views
Multiple Taxonomy in URL/Query - No Custom Post Type
I have Volume and Issue as separate Taxonomies and all Posts have a Volume and Issue assigned. These posts are of post_type=post, not a custom post type.
I linked to and queried for the Volume ...
0
votes
0answers
11 views
How to include child terms within parent?
I have the following for a specific term ID:
<?php if (!is_tax( 'listing_category', '542' )) { ?>
test1
<?php else: ?>
test2
<?php } else { ?>
This works great for making ...
0
votes
0answers
10 views
Auto-Creation of sidebar area when new taxonomy term is created
I have a few different custom taxonomies and was wandering if it was possible to automatically create a new sidebar widget area whenever a new term within the custom taxonomies gets generated, and ...
0
votes
0answers
28 views
Turning wp list categories into a dropdown menu
I am creating a custom dropdown for my wp site and I am running into issues.
I have a taxonomy set up called 'types', these can be filtered in a nav at the top of the page and they link to the right ...
0
votes
0answers
27 views
Get posts that have custom post type value
I have a custom post type called Authors where you can choose an author for that post (authors don't have user account so I went down the custom post type route).
I am building an "author profile" ...

