I have tags. And I have categories.
Example: I have a tag called "Spring Tour". I have a category called "Tour".
I want to pull only the posts from Category Tour into the sidebar.
So, I used this code.`
-
<?php
- "><?php the_title(); ?>
global $post;
$myposts = get_posts('numberposts=5&offset=1&category=375');
foreach($myposts as $post) :
setup_postdata($post);
?>
<?php endforeach; ?>
But now, it is pulling ALL posts that are tagged "tour" in them without regard to category. So, it is pulling "Spring Tour" or "Old Tour" or "Tour Archives" even if those posts have a category named "History" and NOT tour and are not in category 375.
Help?