Tagged Questions
0
votes
1answer
60 views
Display posts with tag that matches current post title
How would I show posts that have a tag who's name matches the title of the current post?
For example if you are on a post called "Hippo" at the bottom of the page I would like posts with the tag ...
0
votes
1answer
929 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
2answers
271 views
Conditionals if tags exist?
I have the following code to display tagged articles with the same name as the page title, but I only want the to appear if the tag exists, otherwise it just says 'Related Articles' with no content. ...
0
votes
1answer
1k views
Filter Posts By Tag
I'm trying to filter my posts by category, then further by city. The only way I can think of filter by city is if the admin adds the city to the listed tags and then filtering from there via switch ...
0
votes
1answer
80 views
Query Posts Incorrectly Displaying Tags Archives
When I go to a tag archive ( http://themeforward.com/demo2/tag/n/ for example) ALL the posts on my blog are being displayed, not just the posts with that tag - and I'd like to fix this.
Here's my tag ...
0
votes
1answer
209 views
Script that gets the first tag of post and query all other posts with the same tag
The script gets the first tag of a post and retrieves in a wordpress loop all other posts with the same tag. I can't seem to get it working:(
Any ideeas?
$posttags = get_the_tags();
$count=0;
if ...
0
votes
1answer
130 views
How to go to tag archives using a form
I've set up a custom post type called 'properties'. These posts can be tagged with the custom taxonomies of 'area' and 'university'.
I would like to be able to have a form with a drop-down for each ...
3
votes
4answers
13k views
how to query posts by category and tag?
I am trying to show a list of posts that are related to category X and tag Y.
I've tried the following code:
$args = array(
'posts_per_page' => 4,
'tag_id' => $tag_id,
'cat' => ...