ispideyi
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: loop won’t show firstAlright, it appears that the loop was never the issue as I previously figured out. It was the javascript file that was loading the previous post. I’ve made the proper adjustments and fixed it.
Forum: Plugins
In reply to: loop won’t show firstI’ve been looking over source of the pages and it does appear that the first post is being pulled properly as the first post in the page.
It might be the javascript that loads the sliding posts that is loading the 2nd post instead.
I’m gonna try to look into this to see if I can make adjustments via the javascript route. Thanks for the recommendation anyways.
Forum: Plugins
In reply to: loop won’t show firstSorry, here is the code inside the index.php
<?php get_header(); ?> <div id="content"> <div class="carousel main"> <a href="#" class="prev"> </a> <div class="rotate"> <ul> <?php query_posts('showposts=10' . "&orderby=date"); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <li> <a href="<?php get_content('post', $post->ID); ?>" rel="facebox" title="<?php the_title_attribute(); ?>"><img src="<?php echo get_thumbnail($post->ID); ?>" alt="<?php the_title_attribute(); ?>" /></a> <div class="intro"> <h3><a href="<?php get_content('post', $post->ID); ?>" rel="facebox" title="<?php the_title_attribute(); ?>"><?php the_title() ?></a></h3> <?php the_excerpt(); ?> </div> </li> <?php endwhile; ?> <?php else : ?> <?php endif; ?> </ul> </div> <a href="#" class="next"> </a> </div> </div> <?php get_footer(); ?>
Viewing 3 replies - 1 through 3 (of 3 total)