Tagged Questions
0
votes
1answer
114 views
WP the_posts() on single-cars.php get category link
I have a custom post type called cars.
There is a taxonomy brands.
I have a template single-cars.php and I'd like to add a link to the brand page(The category).
Assume I'm on the page of the post ...
0
votes
0answers
102 views
Custom post types and custom taxonomy posts are not showing
I have got a post type set up called 'shops', attached to this is a taxonomy called 'Types'.
When you search through each category in the category menu it looks for the posts and displays them in a ...
0
votes
1answer
54 views
Custom My account page and custom page for editing posts
I have created WP theme for property company, with custom post types which are actually apartments so users can from one custom page enter all the informations and the custom post gets saved.
I ...
0
votes
1answer
172 views
How to allow visitors to filter posts by multiple taxonomies
I am trying to allow users to filter a custom post type list by multiple taxonomies. For Example lets say my custom post type is clothing and it has two custom taxonomies brand and type associated ...
1
vote
1answer
156 views
How to add tags (custom taxonomy) to post class css?
I am trying to figure out how to add my custom taxonomy for tags to the post class css when I already have added the custom taxonomy for categories. The code Im currently using to add the category ...
0
votes
1answer
91 views
Form to post new post with custom taxonomies
I have displayed the custom taxonomies in the drop down as you see in the red box i want to ask that how can i submit them with the post .I can't figure it out.`
// Do some minor form validation ...
0
votes
1answer
70 views
Making a form for user to add new custom post with custom taxonomies and custom fields
I want to ask that is there a way display all my custom taxonomies in a drop down menu with checkboxes so when the user check any taxonomy it will be slected and when the user click the submit button ...
1
vote
2answers
45 views
Sidebar links for different pages
Hey all i am wondering what i need to add in order to have a different sidebar for a set page?
I created a category for the page (called PatientEdu):
And made sure the page was linked to the ...
1
vote
1answer
22 views
Disable block with taxonomies at post page
I am developing an events manager for Wordpress.
I have post_type = 'event' and taxonomy 'event_place'
And I want delete block with taxonomy select in post page, because user can do it at custom ...
0
votes
1answer
41 views
display post according to the term
I want display all my taxonomy terms on the left side of my website, so that when a user clicks on one of the terms he can see the posts according to it. How can I do this?
0
votes
2answers
377 views
Adding Multiple Values to a Post Meta Key
I have a question about adding multiple post meta values to a post meta key.
Here is a link to the WordPress add_post_meta(); function in question.
The $unique parameter is a little on the fuzzy ...
1
vote
1answer
864 views
How do I get the slug of a custom taxonomy category of a post?
In my template file, I loop through posts that are categorized either web, print, or marketing in a custom taxonomy portfolio.
How do I echo the slug of each posts category?
1
vote
3answers
150 views
Saving custom fields to a custom taxonomy
I am trying to create a custom field for a custom taxonomy. update_post_meta works great with posts. Taxonomies are not posts so this won't work.
<?php update_post_meta($post_id, $meta_key, ...
2
votes
2answers
181 views
Create new category upon save based on post information
After finding a couple of leads on how to do this, I'm coming up blank. What I am trying to accomplish is to add the post to a new category based on camera name. If the category doesn't exist, then to ...
2
votes
1answer
687 views
Show WordPress Custom Taxonomy Items Based On a Selected Item From Another Custom Taxonomy
Let me explain the problem I am dealing with:
I have 2 custom taxonomies. One is named "thestate" and the other one is named "thetown".
In "thestate" I have listed all the states in the U.S.
In ...
0
votes
1answer
336 views
meta_box or custom_field as a second tinymce post-instance?
probably a rather weird question but I have no idea if this is possible or not!?
I created a custom-post-type to handle events. An event always has a future date but once this date is over I want to ...
1
vote
1answer
192 views
How can I add a meta-box to the posts editor containing all items of a custom taxonomy as checkbox?
I have a custom hierarchical taxonomy containing only two levels of items. First Level the title, second level items of the taxonomy.
Is it possible to add a "meta box" to the posts editor of ...
0
votes
1answer
363 views
Custom permalinks - post type - hierarchical taxonomy's
I did folowed the steps / solution from Jeff it helped me alot with he's settings, got it for about 90% working properly. But getting stuck on the post / postname. It loads now the ...
2
votes
2answers
542 views
How to display different single post template based on author?
My current singlepost.php makes use of the following if conditions and renders the appropriate template.
<?php
$post = $wp_query->post;
if ( in_category('4') || in_category('59') ) {
...
1
vote
1answer
130 views
Which post does a taxonomy term belongs to?
I’m having a page which displays all custom taxonomy terms for a particular type which I get from the URL. I use this code to retrieve all the terms:
$args = array(
'post_type' => ...
0
votes
2answers
323 views
automatically create taxonomy with same name as post title
I have a custom post type called "Country Story". The title of which will be the name of the country. I want Wordpress to automatically create a new taxonomy called "country" of the same name, i.e. a ...
0
votes
1answer
493 views
Showing current taxonomy terms
I've created a custom post type called "References" and a custom taxonomy "Genre".
I have 2 terms : Applications and Games.
My problem is that I'd like to show posts associated in Applications on a ...
1
vote
2answers
881 views
List custom taxonomy specific to one custom post type
I am slowly going mad trying to figure this out..
I want to list custom post type 'mobile_review' by custom taxonomy 'mobile_phone', as multipe custom post types share this taxonomy I need some way ...
0
votes
2answers
236 views
'Organize Series Plugin' as muti author feature
Currently with organize series plugin author level user cannot manage their own series. I am trying to add feature to the plugin so that author level user can create & manage their own post and ...
2
votes
2answers
286 views
Display types of posts in edit.php instead of All, Published, Scheduled and Draft
By default, the post list (edit.php) in the admin panel displays a couple of options. It looks like this:
All (10) | Published (8) | Scheduled (1) | Draft (1)
I want to change this to display ...
1
vote
1answer
167 views
Making pages also serve as taxonomies? Or give full pages to taxonomies?
I run a video game news blog. When my staff writes a news article or a review, I would like them to be able to "assign" that post to a game (if applicable), so then I could have the single.php ...
1
vote
2answers
680 views
Custom Taxonomies Incorrectly Counting Revisions?
(Moderator's note: The original title was "The count of my custom taxonomy is incorrect; it's counting revisions")
Has anybody run into this before? I've added two custom taxonomies, and the count ...