I am at a loss.
I'm needing to get the ID number that is in my loop query for a given post. Maybe I will need to figure out how to recode my slider, but what I think I need is something like this..
<ul id="projects">
<!--[BEGIN FEATURED PROJECTS LOOP]-->
<?php
$featured = new WP_Query();
$featured->query('showposts=4');
while($featured->have_posts()) : $featured->the_post();
$wp_query->in_the_loop = true;
$featured_ID = $post->ID;
?>
<li class="project" id="project-1">
Where project-1 would be project-[the query ID] 1-4. The reason being is because this is how my slider works.. after x-amount of time it slides to my next numerical post... however, as is it isn't changing where the arrow points to.
This is the only thing that I think is keeping my slider from working properly.. but.. I don't know much about how they work either...
Could someone help me out.
Thanks.