Tagged Questions
0
votes
2answers
127 views
Custom post types archive redirect
I had a custom post type with slug as (sometext) which I changed to (someothertext)
And it works great
So for example :
my posts with urls like
http://localhost/sometext/innerposts
gets ...
0
votes
1answer
934 views
Filter query_posts by tag slug on “Tag Archive” page (when tag is 2 or more words)
I'm using the following to bring up a tag archive page:
<?php query_posts( "tag=". '' . single_tag_title( '', false ) . '' ); ?>
This works perfectly for all tags of one word only, but any ...
0
votes
1answer
2k views
Show all posts in category
I am trying to show all posts in each category. I've been searching around and it seems I need to have either the category slug or term_id to do so, like the code below.
<?php ...