Tagged Questions
1
vote
2answers
89 views
Grabbing specific content
Right now I'm doing this (pseudo code)
posts = content_type("special_stuff");
$i = 0;
$n = 5;
$while(have_posts) {
if($i == $n) {
// print the content
}
++$i;
}
This is what I'm ...