Display page of custom post type taxonomy in Wordpress (ok)
https://stackoverflow.com/questions/19719469/display-page-of-custom-post-type-taxonomy-in-wordpress
0
Alright, so what I have is a Wordpress theme with a custom post type (listing) and custom taxonomies under that already built in. I've successfully added my own custom taxonomy (new-developments) under the existing custom post type.
I have also setup a custom template for the new taxonomy titled taxonomy-new-developments.php which functions as well, however, when attempting to get just those custom post types with the taxonomy "new-developments" displayed on their own pages I get all the posts with the custom post type "listing".
Here is my code:
customposttypes.php -
the call in my taxonomy-new-developments.php
Any assistance in this matter would be greatly appreciated!
EDIT: something I left out, which is key to this issue is that the desired result is a page that displays the "new-developments" in a list (this works as you can see here )
What are the terms that you want in this "new development" taxonomy? – Chris Herbert Nov 1 '13 at 3:02
@ChrisHerbert what I need to have is the "new developments" taxonomy display any of the current or future added children, currently they are "doral" and "brickell". So the filter that I have just showing the all of the "new developments" is working properly, it's when I get down to the next level to the city filters that it's not working and just including everything from the "listing" custom post type. Sorry, this rather changes things, I am learning more about the problem as I'm moving along. Thanks in advance for any help. – Red Zephyr Design Nov 1 '13 at 15:46
Reviewing this over the weekend and I've come to the realization that I'm not quite sure what the relation is between the taxonomy of "new-developments" > "doral". Would it simply be a sub-category of the parent category? Whatever the terminology, this is the "item" that I am in need of isolating on the results page so as to get only the listings for Doral under the New Developments category. Again, any help is greatly appreciated. Thanks. – Red Zephyr Design Nov 4 '13 at 15:13
1 Answer
try with this code:
Or go through this link:
Custom Taxonomy Filtering with Wordpress
I attempted to use your code however I ran into an error on line 9. Not being a php developer I attempted to fix it, and while I removed the error the code would not generate any results. – Red Zephyr Design Nov 1 '13 at 15:48
I ran the code here: [link]phpcodechecker.com/[/link] and this is the error it displayed: Error: There is 1 more opening parenthesis '(' than expected PHP Syntax Check: Parse error: syntax error, unexpected T_VARIABLE, expecting ')' in your code on line 9 $my_query = null; – Red Zephyr Design Nov 1 '13 at 15:50
It's missing a closing parenthesis on line 8. – Chris Herbert Nov 1 '13 at 16:23
@ChrisHerbert thanks for pointing that out, I did end up figuring out what the matter was but it didn't change the outcome of the code. Still got no results. – Red Zephyr Design Nov 1 '13 at 20:12
Last updated
Was this helpful?