Tagged Questions
0
votes
0answers
11 views
Maintain custom post types and taxonomies in all themes [duplicate]
When I change the theme in dashboard, activated plugins that use custom post types, stay in the menu. But my own custom post types that I created myself disappear. Logically, It is because I create ...
0
votes
1answer
21 views
create taxonomy
I am new to word press, I want to display results on a page which belong to some group from database(I have group column). I think this can be done by taxonomy so I have taxonomy table but I don't ...
0
votes
1answer
17 views
How to set hierarchical terms to a post using wp_set_object_terms
I have a hierarchical custom taxonomy called "locations". The parent categories are country names, the child categories are the territories under the country.
How can i attach these terms to a post ...
0
votes
1answer
15 views
How to get next previous category in same taxonomy?
Like WP get_adjacent_post function gives the next and previous post data based on the parameters i want to get the next/previous category data is there any WP built in function which does the right ...
1
vote
1answer
18 views
wp_insert_post not updating custom taxonomy selected if logged in as a subscriber
Here is my Code, it works fine When i try to post data from front end if Logged in as admin, but if i logged in as a subscriber code works fine but it is not inserting the taxonomy term i select, here ...
0
votes
1answer
23 views
Looping taxonomy in taxonomy?
So I have a CPT of references (like a dictionary kind of format for music).
In it there are two taxonomies: medium_reference and reference_letter.
The reference_letter lists letters A-Z, while ...
1
vote
1answer
30 views
Include custom post type in “all posts”
(Working of off an existing team that the client already purchase.)
I have a WordPress install with a couple of custom post types:
portfolio
testimonials
I've set the taxonomy to hierarchical' ...
1
vote
1answer
88 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: ...
0
votes
1answer
34 views
Changing taxonomy term by slug (wp_update_term)
What I am trying to accomplish is to update a taxonomy term name using its slug rather than the $term_id
Wordpress does this by:
<?php wp_update_term( $term_id, $taxonomy, $args ) ?>
Is it ...
1
vote
1answer
170 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 ...
0
votes
1answer
74 views
Query specific posts per user selections from dropdown menus
This may be a little different than most people do. I'm trying to show certain posts that are determined by 4 different "categories." I have a large database table full of "products" (I'm using the WP ...
0
votes
2answers
64 views
Custom Post taxonomy template
Friends I need help.
Am extending the Mayashop theme for a friend & I ran into a problem.
Created a custom post type named watchdog, created a taxonomy for it called watchdog-brand ... now the ...
0
votes
0answers
35 views
How to hide custom post types/taxonomies from permalink structure?
All questions about post types/taxonomies and permalinks seem to be about altering and changing the permalink. I wonder how to hide a post type or a taxonomy completely from search engines, prevent ...
0
votes
0answers
26 views
Trouble separating post types on taxonomy pages
I've created a custom post type "project" with custom taxonomies and am using those same taxonomies to categorize blog posts. I've figured out how to create my taxonomy.php page to list all things ...
0
votes
1answer
40 views
Order taxonomy terms wordpress
It seems like something really simple, however I can't find a good solution to what I am looking for.
I created a page template that shows all my taxonomy term of a taxonomy called "news" eg:
paper1, ...
0
votes
1answer
54 views
Select default taxonomy on dropdown
I have the following code for adding a dropdown box with a new taxonomy currently the default when I create a new post is None. Is there a way I can define a default, for example News.
function ...
0
votes
2answers
60 views
Get Taxonmy Term ID For Current Post
If I wanted to get the category ID for the current post, I would use something like this:
<?php foreach((get_the_category()) as $category) { echo $category->cat_ID . ' '; } ?>
How can I do ...
0
votes
1answer
106 views
Query Multiple Custom Post Types & Exclude a Taxonomy Term
I'm querying multiple custom posts types and I'd like to filter certain posts that are tagged with a specific taxonomy term.
The taxonomy is "content" and the term is "indy"
I'm using the the code ...
0
votes
2answers
84 views
Targeting categories in custom fields
I was hoping somebody could help me out with custom fields.
I created a custom post type called game-type in WordPress. In this I have the categories "Android", "iOS" and "PC", then within these I ...
3
votes
1answer
137 views
Custom taxonomy on permalink
I have a long time problem and look forward for your help.
I have a custom taxonomy of "city" (it is no hierarchical like tags).
I just would like my URLs to look like this:
...
-1
votes
1answer
35 views
Getting taxonomies specific to categories
I have categories set up for car manufacturers.
I have 4 custom taxonomies that are also set up: color, starburst, offer_type, and logo_count.
Each post I upload to my wordpress has values for all 4 ...
0
votes
1answer
176 views
SQL QUERY needed to get POST category (taxonomy) ? - MUST be SQL statement
Working on a tool outside of Wordpress to query the wordpress database by POST_ID and return the Category Name associated. This is for a real estate website, and the Categories are called ...
1
vote
2answers
136 views
Custom taxonomies making WP very slow - Way to fix?
I've set up three custom taxonomies within my theme for attachment post types within Wordpress 3.5.1. One taxonomy is non-hierarchical (i.e. tags) and has about 800 terms in it. (I'm using WP to build ...
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 ...
0
votes
1answer
71 views
Only display latest custom taxonomy post
I have a custom taxonomy set as a "splash" on my front page, I would like to only display the latest one of these taxonomies as a splash, and any older ones to be returned to the loop and displayed as ...
1
vote
1answer
55 views
How to display products name in a non-alphabetical order, in a custom field (taxonomy)?
Now the order is: apples, oranges, pears.
But I want to be in a random order, for ex: oranges, apples, pears.
Or to write them in a order that I want.
Is this possible?
Taxonomy is like that:
...
0
votes
0answers
11 views
How to remove “Add new taxonomy” form in manage taxonomy page? [duplicate]
Possible Duplicate:
How To Remove The “+ Add New Category” Link From A Category Metabox
For this case in use taxonomy name "Country"
in the picture how to remove this form. So I can ...
0
votes
1answer
113 views
How to display posttypes and taxonomy in standard posts, not in a separate label?
I want to display some taxonomies directly in "Posts" label, as standard post, not in a separate label like "Books" for exp., but i don't know how.
Is there a way to do this?
This is the code:
class ...
0
votes
2answers
137 views
WP Query with custom taxonomy
I'm just getting used to the WP Query and was hoping I could get some assistance on this.
I've created a custom taxonomy (theme) and now want to display the latest post with one of these taxonomies ...
0
votes
1answer
305 views
Create custom taxonomy and Display in metabox dropdown
I'm looking to create a dropdown in the post edit screen which contains 3 already existing tags. What's the easiest way of doing this?
Basically all I'm looking for is a simple drop down which adds ...
0
votes
1answer
66 views
query posts returns 10 records
I am using the following code to fetch records from a custom taxonomy.
if ($_GET['post_type'] == "developments"){ ?>
<?php
global $wp_query;
...
0
votes
1answer
278 views
Display custom taxonomy attached to the post on post single page
I need to display the first custom taxonomy attached to the post on post single page. The custom taxonomy is similar to category attached to the posts. I need to display the first custom taxonomy with ...
5
votes
2answers
675 views
How it is possible to use taxonomies on attachments?
With WordPress 3.5 was changed the media management and edit screen use the default of edit post type UI. The taxonomies is very usefull for WP installs, there have different users and attachment to ...
0
votes
1answer
205 views
Archive template for taxonomy terms
I have registered a custom post type [equipment] and have a taxonomy of [equipment_type] within the taxonomy I have parent and child categories. For example:
Equipment (Custom post type)
Equipment ...
1
vote
1answer
45 views
How to get the id from the custom category?
How do i get the ID from the current custom taxonomy (category) the user is browsing?
It uses a custom post type called "products"
The categories are called "pcategories"
With normal categories i ...
4
votes
1answer
178 views
Wordpress - Creating multiple versions of the same single-customtype.php depending on selected taxonomy categories
I have registered a custom post type 'Clients' and a taxonomy for this post type for categorizing posts. There are currently 3 categories for a Client: 'Logo Project', 'Video Project' and 'Web ...
0
votes
1answer
87 views
Wordpress Taxonomy Menu
I have got the following simple code.
<ul id="filter"><?php
echo '<li class="active"><a href="#" class="all">All</a></li>';
if ( $count > 0 ) { ...
0
votes
1answer
103 views
List of taxonomy archive index page links
I want to show all my post taxonomies on the left side of the web page in such a way that when a person click on it the post can be displayed according to the taxonomies.is there anyway to display ...
1
vote
1answer
54 views
Listing taxonomies from custom post type
I have a custom post type with several taxonomies within it
Eg. the post type is called campsites and the taxonomies are various counties: cheshire, staffordshire etc.
What I want to do is: list all ...
1
vote
1answer
64 views
Custom Taxonomy Query
I have setup two custom taxonomies for a custom post type that I have created. The post type is called beer, and the two taxonomies are country and brewers.
I would like to list them like this.
...
0
votes
1answer
31 views
Get Posts with matching lowest taxonomies
I have a post type called venues, and each post type has a list of values to choose from in my custom taxonomy 'location'.
E.g:
London (top level)
West London (2nd level)
North London (2nd level)
...
1
vote
1answer
69 views
Taxonomy in URL
I have a huge problem: I want to have nice URL's on my Homepage. I got a custom post type and taxonomies. Now I want to have a URL like that:
www. mydomain ...
1
vote
1answer
92 views
Modify “View” in admin panel for custom taxonomy
Fristly, sorry for my bad english.
Secondly, I can't find a solution for my problem since 2 weeks. It's a simple things but I can't find how to do it.
I explain my problem :
I got 2 custom taxonomies ...
0
votes
1answer
335 views
Query Custom Post Type by Taxonomy
I've created a query working fine pulling posts from a specific taxonomy—but before I had only 7 taxonomies that were permanent, now I have sub taxonomies under that main taxonomy and they will be ...
4
votes
1answer
124 views
Return only the custom sub-term for custom post type, do not echo term-parent
I've made a custom function that retrieves the custom taxonomy term for a list of posts in a query, and echos both the name and the link. Additionally, it also excludes listing a term if I specify the ...
2
votes
1answer
76 views
Wordpress renames slug of tags used in multiple taxonomies?
I've noticed Wordpress renames the slug of identical tags used across multiple taxonomies, is there an easy way to change this behavior?
Let's say I create a tag called Nintendo under the publisher ...
1
vote
1answer
175 views
How can I convert some categories to a custom taxonomy?
I have a WordPress install that has a ton of categories. I want to convert some of these categories into a custom taxonomy. For example, I have:
Categories:
Category A
Subcategory 1
Subcategory 2
...
0
votes
1answer
176 views
Taxonomy-{taxnonomy}.php is not working
I have just created a custom post type (portfolio) for a wordpress website. I also have added a Custom Taxonomy called (portfoliocategory).
I have created a archive page for my Custom Post Type ...
0
votes
1answer
66 views
Custom posts and custom taxonomies for many products and categories?
I'm a little confused about custom posts and custom taxonomies...
I've read it everywhere but I didn't understand very well..
I would build a wordpress site, with many products, categories, feature ...
0
votes
1answer
264 views
How can I get Taxonomy Images to work with 'orderby' argument?
I'm using the Taxonomy Images plugin and am trying to sort the taxonomy but Taxonomy Images isn't playing nice. This works:
$terms = get_terms( 'work_cat', $args );
but this doesn't:
$terms = ...



