Hi there. Im having a problem were the home page keeps reloading the same newest posts. I am not the one created the site. From what i've researched it seem that the problem might be in the loop.php file. here is the coding.
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<?php endif; ?>
<?php if ( ! have_posts() ) : ?>
<div id="post-0" class="post error404 not-found">
<h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyten' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</div><!-- #post-0 -->
<?php endif; ?>
<?php $count = 0; while ( have_posts() ) : the_post(); ?>
<?php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?>
<?php if ( ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) || in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) : ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="entry-meta">
<?php twentyten_posted_on(); ?>
</div><!-- .entry-meta -->
<div class="entry-content">
<?php if ( post_password_required() ) : ?>
<?php the_content(); ?>
<?php else : ?>
<?php
$images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) );
if ( $images ) :
$total_images = count( $images );
$image = array_shift( $images );
$image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' );
?>
<div class="gallery-thumb">
<a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a>
</div><!-- .gallery-thumb -->
<p><em><?php printf( _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyten' ),
'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"',
number_format_i18n( $total_images )
); ?></em></p>
<?php endif; ?>
<?php the_excerpt(); ?>
<?php endif; ?>
</div><!-- .entry-content -->
<div class="entry-utility">
<?php if ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) : ?>
<a href="<?php echo get_post_format_link( 'gallery' ); ?>" title="<?php esc_attr_e( 'View Galleries', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a>
<span class="meta-sep">|</span>
<?php elseif ( in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) : ?>
<a href="<?php echo get_term_link( _x( 'gallery', 'gallery category slug', 'twentyten' ), 'category' ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a>
<span class="meta-sep">|</span>
<?php endif; ?>
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
</div><!-- .entry-utility -->
</div><!-- #post-## -->
<?php /* How to display posts of the Aside format. The asides category is the old way. */ ?>
<?php elseif ( ( function_exists( 'get_post_format' ) && 'aside' == get_post_format( $post->ID ) ) || in_category( _x( 'asides', 'asides category slug', 'twentyten' ) ) ) : ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>
</div><!-- .entry-content -->
<?php endif; ?>
<div class="entry-utility">
<?php twentyten_posted_on(); ?>
<span class="meta-sep">|</span>
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
</div><!-- .entry-utility -->
</div><!-- #post-## -->
<?php /* How to display all other posts. */ ?>
<?php else : ?>
<?php $category = get_the_category(); ?>
<!-- loop 2 -->
<div class="post-box">
<div class="post-title">
<div class="title-info">
<h3><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>"><?php the_title(); ?></a></h3>
<small>Postado por <strong><?php echo get_the_author(); ?></strong> em <strong><?php echo $category[0]->cat_name; ?></strong></small>
</div>
<div class="title-date">
<h4><?php echo get_the_date('d'); ?></h4>
<h5><?php echo get_the_date('M'); ?></h5>
</div>
<div class="clear"></div>
</div>
<?php
if(function_exists("has_post_thumbnail") && has_post_thumbnail())
{
echo '<div class="post-image">';
the_post_thumbnail('blog-destaque');
echo '</div>';
}
?>
<div class="post-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>
</div>
<div class="post-comment-ms">
<a class="btn-more-info float-left margin-right-10" href="<?php the_permalink(); ?>#post">Continue lendo</a>
<a class="btn-comments float-left" href="<?php the_permalink(); ?>#comentarios">comentários (<?php echo get_comments_number(); ?>)</a>
<a class="btn-media-social float-right addthis_button" href="javascript:;">+</a>
<ul class="box-share">
<li class="box-twitter"><a href="http://twitter.com/home?status=<?php echo urlencode(get_the_title()); ?>+<?php echo shortenURL(get_permalink()); ?>">Twitter</a></li>
<li class="box-facebook"><a href="http://facebook.com/share.php?u=<?php echo shortenURL(get_permalink()); ?>&t=<?php echo urlencode(get_the_title()); ?>">Facebook</a></li>
<li class="box-google"><a href="https://m.google.com/app/plus/x/?v=compose&content=<?php the_title(); ?> - <?php echo shortenURL(get_permalink()); ?>">Google+</a></li>
<li class="box-digg"><a href="http://digg.com/submit?url=<?php echo get_permalink(); ?>&title=<?php the_title(); ?>&bodytext=<?php the_title(); ?>">Digg</a></li>
<li class="box-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=<?php echo get_permalink(); ?>&title=<?php the_title(); ?>&summary=&source=<?php echo get_bloginfo('name'); ?>">LinkedIn</a></li>
<li class="box-email"><a href="mailto:&subject=<?php the_title(); ?>&body=<?php the_title(); ?>%20-%20<?php echo shortenURL(get_permalink()); ?>">Email</a></li>
</ul>
<div class="clear"></div>
</div>
<div class="clear"></div>
<?php $count++; ?>
<?php if($count == 1): ?>
<!--<div style="width:468px; height:60px; padding: 20px 0 30px 0; margin: 0 auto;"><img src="files/images/paradise-468-60.gif" /></div>-->
<div style="width:468px; height:60px; padding: 20px 0 30px 0; margin: 0 auto;"><a href="http://haroldoazevedo.com.br/" target="_blank"><img src="files/images/banner-paradise.gif" /></a></div>
<?php elseif($count == 2): ?>
<div style="width:468px; height:60px; padding: 20px 0 30px 0; margin: 0 auto;"><a href="http://jornaldehoje.com.br/" target="_blank"><img src="files/images/Gif-Joral.gif" border="0" /></a></div>
<?php elseif($count == 3): ?>
<div style="width:468px; height:60px; padding: 20px 0 30px 0; margin: 0 auto;"><a href="http://audicontrn.com.br" target="_blank"><img src="files/images/AudiCont-gif.gif" border="0" /></a></div>
<?php $count = 0; ?>
<?php endif; ?>
<? /*
<div style="width:468px; height:60px; margin:0 auto 15px auto; background: red;"><img src="files/images/paradise-468-60.gif" /></div>
<?php if($count%2): ?>
<? elseif($count == 3): ?>
<div style="width:468px; height:60px; margin:0 auto 15px auto; background: blue;"><a href="http://jornaldehoje.com.br/" target="_blank"><img src="files/images/Gif-Joral.gif" border="0" /></a></div>
<? endif; */ ?>
<!--Banner-->
</div>
<!-- loop -->
<?php endif; // This was the if statement that broke the loop into three parts based on categories. ?>
<?php endwhile; // End the loop. Whew. ?>
<?php /* Display navigation to next/previous pages when applicable */ ?>
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<?php /*?><div class="navigation">
<a class="btn-load-more margin-left-90" href="javascript:;">Ver mais</a>
</div><?php */?>
<div id="nav-below" class="navigation">
<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentyten' ) ); ?></div>
<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' ) ); ?></div>
</div><!-- #nav-below -->
<?php endif; ?>
i will be forever grateful to anyone who can help me with this. =)