A taxonomy is a generic "category" used to organize posts and custom post types
2
votes
2answers
213 views
Custom Post Type and Taxonomy combination
Is it possible to create a permalink/template structure like this:
www.example.com/attractions <-- post type archive
www.example.com/attractions/museums <-- taxonomy ...
2
votes
2answers
275 views
Organising Taxonomy categories
I have the following code in my sidebar to list all the taxonomy categories.
<div class="left">
<h1>Categories</h1>
<?php
//list terms in a given taxonomy ...
2
votes
1answer
2k views
How to change permalink structure for custom post type and it's taxonomies?
This is a repost of an earlier question I had, but I like to go into more details now to be able to fully solve this.
So again, with (normal) posts changing the permalink is as easy as going to ...
2
votes
2answers
523 views
How to list custom post types?
Here's what I'd like to do:
a) Create a custom post type and write panel for a menu item called "My Stuff."
b) "My Stuff" will behave like a category -- but the content will not appear in the main ...
2
votes
1answer
344 views
Show Custom Taxonomy Slug(s)?
can anyone help me with this?
I need to print the slug of my custom taxonomy, can this be done?
The following kind of works but it just shows the name, rather than the slug which i need for a class ...
2
votes
2answers
358 views
Bug when editing custom post type category?
When editing categories for my custom post type the selected admin menu is the one for posts (see screenshot). Is this a bug. If not it's kind of non intuitive, and not so good for the end users ...
2
votes
4answers
1k views
wp_set_object_terms() Fails to Set Terms
Okay guys, here's the scenario.
I'm am trying to setup a function that will automatically duplicate a post (when published) over to another post type. So, a regular blog post is published, and when ...
2
votes
1answer
816 views
Query Posts by taxonomy/Taxonomy Child Custom order
This is an ongoing request, trying to do maximize some code to display a list of Accomodation by Country, of a certain Type, and a specific Region.
So for example, a list of ALL accommodations in ...
2
votes
1answer
509 views
Conditional tag affecting taxonomy term and its children?
I am wondering how can I write a conditional tag that affects a custom taxonomy slug and its children?
Found this in Wordpress Codex:
is_tax( 'flavor', 'mild')
When the archive page for the ...
2
votes
1answer
213 views
How to prevent posts duplicating when viewing a custom taxonomy term
My question is fairly basic. I have an archive.php and inside I have the main loop like so:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
Do stuff here
<?php endwhile; ...
2
votes
1answer
4k views
Custom Metabox with Taxonomy Dropdown - Saving Issue
My goal was simple --- to create a custom post type with a custom metabox with a simple drop down list of taxonomy terms instead of utilizing the tags or checkboxes. The reason was to ensure that the ...
2
votes
0answers
69 views
Post Link Filter Help
I Am probably being a complete tool here but I am trying to change the permalink on my custom post type to a particular category child. The code in essence works but I cannot for the life of me figure ...
2
votes
1answer
119 views
Permalink Rewrite for Custom Taxonomy
I have added a custom taxonomy called 'Boards' with the following code
function add_custom_taxonomies() {
register_taxonomy('board', 'post', array(
'labels' => array(
'name' ...
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
1answer
90 views
“Reversable” and “Re-useable” Subcategories (or other taxonomic structure)
Hope you can help a WP newbie :)
It is my understanding (and please correct me if I'm wrong!) that I cannot use the same subcategory slug in multiple parent categories, i.e. this structure is ...
2
votes
1answer
214 views
Having trouble understanding custom post type and taxonomy :/
I am developing a Wordpress site that will have a database of car modifications and an embedded youtube video with the results.
For example: search for Honda Civic with a spoiler and exhaust. This ...
2
votes
2answers
431 views
create a back-end wordpress content submission using custom post type
I have a previously created thread here, but was recommended to make a new one:
I need basic help with custom post types.
Basically here's my project:
I have to create a back-end wordpress gui user ...
1
vote
3answers
254 views
Make first letter of my taxonomy uppercase
I'm using
echo get_the_term_list( $post->ID, 'trpropcity', '', ' ', '' );
to show a taxonomy link, I'd like to make this instance of it only have the first letter capitalized, Cleveland not ...
1
vote
3answers
2k views
How can I remove links from the function “get term list”?
<?php echo get_the_term_list( $post->ID, 'people', 'People: ', ' ', '' ); ?>
returns something like this:
People: <a href="person1">Person1</a>, <a ...
1
vote
2answers
146 views
Removing the “Popular Terms” area from the Taxonomy Edit Screen in the Admin Area
Personally I really dislike how wordpress shows all the "popular terms" in different sizes on the taxonomy add/edit screen in the admin area.
Does anyone know of a way to either remove this entire ...
1
vote
1answer
6k views
Getting Wordpress custom taxonomy/category?
Well, I'm using my own taxonomy for custom post type. It looks like this:
register_taxonomy("our_gallery", array("gallery"), array("hierarchical" => true, "label" => "Types", "singular_label" ...
1
vote
2answers
2k views
Advanced Tax Query
Below is my tax query, at the moment this returns all posts which have at least one of the specified terms.
Is there a way I can have it return only posts which have ALL of the specified terms?
...
1
vote
1answer
489 views
Custom Post Types and Categories?
For the life of me I cannot seem to get categories to come into existence with my custom post type. I've added the following — simple — code to the bottom of my theme's functions.php file, ...
1
vote
1answer
168 views
How do I filter posts by taxomony using AJAX
I found this post that describes how to filter category posts with Ajax and it works great, but I also want to filter my custom taxonomies the same way and I can't get it to work. It shows me all ...
1
vote
1answer
464 views
Exclude custom taxonomy tag from loop
I have the following code at the beginning of a loop:
<?php query_posts('showposts=3&cat=84'); ?>
<?php $posts = get_posts('category=84&numberposts=3&offset=0'); foreach ($posts ...
1
vote
2answers
589 views
I need template for my custom taxonomy term
I created a custom taxonomy slug is 'event_type' and created terms like social, educational and religious. I want to have template page where I can show posts related to these terms. you can say I ...
1
vote
1answer
4k views
How can I add the featured image functionality to a custom taxonomy?
I would like to be able to use the 'featured image' functionality, found on post types, for a custom taxonomy.
I have a taxonomy called 'collections' and I would like each collection to have a ...
1
vote
1answer
363 views
Problem with custom post types, taxonomy and permalinks
I am experiencing problems with custom post types, taxonomies, permalinks and rewrites.
I created a custom "recipes" post type and taxonomy using this code:
add_action('init', 'recipes_register');
...
1
vote
2answers
648 views
Custom Post Type with Custom Title
I have a custom post type without title support and I'm trying to generate one from post's taxonomies and custom fields. To do so, I'm using this code:
function custom_post_type_title_filter( $data , ...
1
vote
1answer
1k views
Search for tags
Is it possible, to search just for tags?
Not any other taxonomies or post types, just tag titles.
1
vote
1answer
801 views
Priority for Categories, Tags, Taxonomies, Posts, Pages and Custom Posts with same url
I have been reading dozens of posts and honestly, I have many doubts on how this work. Furthermore, I think that with WP3.1 more issues have been added here because I am having even more problems now ...
1
vote
2answers
2k views
Reproducing hierarchical list output from wp_list_categories, using get_categories()
I need more control over the category listing output, so I'm using get_categories (http://codex.wordpress.org/Function_Reference/get_categories), instead of wp_list_categories ...
1
vote
2answers
56 views
Have a Custom Post Type index page display taxonomy items instead of posts
I have a CPT registered that is called lessons with a custom taxonomy (category) that is called courses. I want the /courses page (archive-courses.php?) to display the individual courses (i.e. "online ...
1
vote
1answer
245 views
meta_key & meta_value not working with get_pages and custom taxonomy
I'm trying to use custom taxonomy with pages. Basically a page has a "relevance" taxonomy, depicting who the page is relevant for. The pages are created in a hierarchy based on the departmental ...
1
vote
1answer
820 views
Using pre_get_posts to set posts per page, how do I?
I am trying to use pre_get_posts to set posts per page for a single term within a taxonomy. One thing that is throwing me off is setting the term to apply the pre_get_posts to.
Here's my code:
...
1
vote
2answers
113 views
If search matches taxonomy
Is it possible to redirect the user to the taxonomy page IF the search input matches the taxonomy name exactly?
For instance i have a taxonomy called "Actors". If someone put into the search field ...
1
vote
1answer
2k views
wp_insert_term - parent & child problem
I have a car database that I want to import into Wordpress as taxonomies. The problem is I can't create 2 taxonomies at once (first is parent, last ones are childs of first).
$p = ...
1
vote
2answers
353 views
List Terms in Category
I want to list all terms of a specific taxonomy used in a category.
Like I have a taxonomy called 'Manufacturer' and a category 'Shoes'. Each post in this category has a term like 'Nike', 'Adidas' or ...
1
vote
3answers
1k views
How to create non-unique sub-category slugs?
What’s the best way to make Wordpress accept non-unique sub-category slugs?
By default, Wordpress ensures that every ‘slug’ portion of permalink URLs is unique, and is very savvy about using this to ...
1
vote
2answers
877 views
List a current posts' taxonomy terms in a widget in Wordpress
I would very much like to know if there is a widget that exists that would let me show the current page's associated taxonomy terms (preferably hierarchically) in a widget.
For example, if the ...
1
vote
1answer
38 views
Showing custom taxonomy column in taxonomy category listings immediately after create category
I add my custom taxonomy column with this code:
function manage_my_category_columns($columns)
{
if ( !isset($_GET['taxonomy']) || $_GET['taxonomy'] != 'products' )
return $columns;
...
1
vote
1answer
87 views
Combine two taxonomies in a hierarchical tree
For example, I have WooCommerce products that have taxonomies:
brand (e.g. Converse, adidas, D&G) (taxonomy id: product_brand)
category (e.g. Boots, Sneakers, Sandals, Heels) (taxonomy id: ...
1
vote
1answer
67 views
Add a css class to a taxonomy permalink
I need to add a css class to every <a> element retrieved by the_terms() (or similar function) in order to open the taxonomy permalink in a fancybox modal window.
I've been searching this whole ...
1
vote
1answer
77 views
Function to limit the number of posts in taxonomy.php
How can I change the post limit for taxonomy.php from that which is defined in the settings page?
Currently I have 10 posts displaying per page, which is fine for the blog part of my site, but I want ...
1
vote
2answers
42 views
How can i list the categories of a post type, the taxonomy
How can i retrive the categories from a post_type that i select.
I have a Custom_field - categorie_serial
<?php
$values = get_field('categorie_serial');
if($values)
{
echo '<ul>';
...
1
vote
2answers
114 views
How to add terms to my tax_query based off of the current post
I need the terms in my tax_query to be the ones from the current post. I am trying to this by using a variable. The value of the variable is given by using the get_terms() function.
The problem is ...
1
vote
1answer
68 views
Add a term to an attachment submitted from front end
I have a front end post form where users can upload a file with their post that I save as an attachment using media_handle_sideload(). I need a way to add a term to that attachment so I can show a ...
1
vote
1answer
56 views
How to obtain the link/URL to the feed of a custom taxonomy?
What I need to accomplish is to provide a feed link for every item in a custom taxonomy. The function get_category_feed_link only works for categories, and I don't see that tags support this either.
...
1
vote
1answer
170 views
What hooks/filters are there to alter selected terms on post save?
Very simple, where would I hook/filter to alter the users selection of terms when they save a post (Update or Add)?
I need to hook in all instances; such as when saving a post via AJAX, saving when ...
1
vote
1answer
118 views
Show list of custom taxonomies when another taxonomy is selected
Hard question to explain here. So here goes:
I have a chapter/section scenario I'm trying to work out. The custom post type of "Books" has two custom taxonomies, "Chapters" and "Sections". The ...