Tagged Questions
0
votes
2answers
173 views
List 'n' number of posts from a Tag, each with a different class or ID
I want to list 'n' number of posts (ordered by latest first) -- post's title linked to the post's permalink -- from a tag on my WordPress blog. I also want to assign each link its own class or ID.
I ...
1
vote
1answer
210 views
How to query with get_posts() for posts with any tag
I need to do a simple post query that will get any post that has at least one tag. This is my current code that gets the posts with tag ID 27 or 36, but I need to modify it to get all posts with at ...
0
votes
2answers
526 views
attachments with tags and get_posts
having problems with filtering a posts attachments by tag... It worked fine until i added the tag__in arg (and other variations of it).
$vidArgs = array(
'tag__in' =>5,
...