Since WordPress 2.3, plugin and theme authors have had the ability to create custom taxonomies-- essentially specialized "categories"-- to help organize information.
0
votes
1answer
12 views
changing post type in loop query
i created a template named "taxonomy-myword.php" and i am tring to print posts related to this custom category. Unfortunately, my posts are affected with a custom post type too.
I tried the right way ...
0
votes
1answer
8 views
Query Only Show Text on Posts With Certain Taxonomy Tag
I am trying to query in a post to show a fixed line of text at the end, so that if that post has a specific taxonomy tag applied to it (Special), then a line of text will show.
I guess it's something ...
0
votes
1answer
9 views
Get link for feed of specific post type AND taxonomy
I am able to get a specific post type with http://www.mywebsite.com/feed/?post_type=post-slug&topic=accountable-care-organizations, but when I try ...
0
votes
1answer
13 views
Remove taxonomy menu without removing the metabox?
I'm creating a custom taxonomy for a CPT and I need to remove the ability to create new terms for this taxonomy. I would like to know if there is a way to remove from admin menu (show_ui => false?) ...
1
vote
1answer
29 views
Rewrite rule for custom taxonomy
I'm pretty new to wordpress and I'm trying to create a recipes blog.
I've created a custom taxonomy for ingredients:
register_taxonomy(
'ingredient',
'post',
array( 'label' => ...
0
votes
1answer
15 views
Custom taxonomy list in Worpdress
I just registered following code in my function
add_action( 'init', 'create_resources_taxonomies', 0 );
function create_resources_taxonomies() {
$labels = array(
'name' ...
0
votes
1answer
12 views
List custom taxonomies associated to an author's posts
On the author template, I would like to display a list of the custom taxonomies associated to the posts written by that author.
In details:
I have a "clubs" taxonomy, which is non-hierarchical and ...
0
votes
0answers
5 views
Custom post type/taxonomy and pages rewrite conflict gives 404
I have set up a CPT called 'question'. For this CPT I am using a custom taxonomy called 'profession', consisting of terms such as 'doctor' and 'plumber'. I am also working with standard pages.
When ...
0
votes
1answer
24 views
Let plugin check if taxonomy is already registered by another plugin
My site is using a custom taxonomy that can be associated with two different custom post types. Each post type is registered by a different plugin. It may be that only one of the plugins is active or ...
-1
votes
0answers
12 views
Do I need an array with this custom taxonomy template and if so, why?
If I wanted to use the same exact template below (which was for a custom post type archive) for a custom taxonomy of totd_cat, how would I do that? I have tried this in my template ...
0
votes
1answer
8 views
When filtering query on custom taxonomy; main menu dissapears
I have created a custom taxonomy, and that works.
But here is the problem;
I have created an archive page, which in the url gets e.g. this: ?category=23. Then, in functions.php, I do this:
function ...
0
votes
0answers
12 views
Custom taxonomy displayed in search results
In my search results template within my WP site search.php, the function et_divi_post_meta() displays a posts meta data.
What code would I use to display the the custom taxonomy that I created: ...
0
votes
1answer
26 views
List Posts By Custom Taxonomy
Apologies if this is a stupid question, I've had a google and a look on the site but can't find an answer to my question.
I'm working on a project and have created a custom post type called 'books'. ...
1
vote
1answer
11 views
How can i retrieve all custom registered taxonomy?
i am trying to find a way to retrieve all registered taxonomies
i was looking at get_taxonomies() but i cant seem to get only the custom registered ones.
any idea ?
0
votes
1answer
11 views
The next_posts_link() show me a aditional page in blank
The description
Hi, I am using a custom post type and a loop through the values I show.
I'm using a term ($ term) that comes from a previous page in the loop to only show related items.
Just for ...