Hello,
I've been stuggling with the following issue for hours & hours... I appreciate any possible help!
I've have a conditional tag (http://codex.wordpress.org/Conditional_Tags) in my sidebar to deliver different content to different category pages.
Within that conditional tag, I am trying to list the posts of a certain category. Following Kafkaesqui's instructions in the forum post http://wordpress.org/support/topic/69799 I've been attempting to input the equivalent of:
<?php
$photog_posts = get_posts('category=10&numberposts=-1'); foreach($photog_posts as $post) : setup_postdata($post);
?>
within the conditional tag.
However, to the best of my knowledge, I have to "echo" the portions of that code. And, have ended up with something like this...
echo "$photog_posts = get_posts('category=2&numberposts=10');";
echo "foreach($photog_posts as $post) : setup_postdata($post);";
This, of course, DOES NOT WORK.
So... how would one call Kafkaesqui's code above within a conditional tag (where the elements have to be "echoed")?
Thanks for any & all help!