• Resolved algoncalv

    (@algoncalv)


    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. =)

Viewing 15 replies - 1 through 15 (of 18 total)
  • Thread Starter algoncalv

    (@algoncalv)

    and no plugins are active

    What happens if you switch to the default 2012 theme?

    Thread Starter algoncalv

    (@algoncalv)

    and here is the code for index.php

    <?php get_header();  ?>
    
    		<div id="main">
    			<!--
    			<div style="background: red; width: 500px; height: 500px; position: absolute; top: 0; left: 0;">
    				<div id="content">
    				    <div class="left">
    				       <?php if(strlen(category_description($category))> 7){ ?>
    				        <div class="category-presentation"><?php echo category_description($category); ?></div>
    				        <?php } ?>
    				        <h2><?php //echo(get_category_parents($cat, true, ' &raquo; ')); ?></h2>
    				       <?php //if(!empty($category)){ ?><ul id="category"><?php wp_list_categories('orderby=name&show_count=0&title_li=&child_of='.$cat); ?></ul><?php //} ?>
    				    </div>
    
    				    <div class="right">
    						<?php query_posts('cat='.$cat); ?>
    				        <?php while (have_posts()) : the_post(); ?>
    				        <div class="post">
    				            <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
    				            <p><?php echo the_content(); ?></p>
    				        </div>
    				        <?php endwhile; ?>
    				    </div>
    				    <div class="clr"></div>
    				</div>
    			</div>
    			-->
    
    			<div id="col-left">
    				<?php get_template_part('loop', 'index'); ?>
    			</div>
    
    			<div id="col-right">
    				<?php get_sidebar(); ?>
    			</div>
    			<div class="clear"></div>
    		</div>
    
    <?php get_footer(); ?>

    Thread Starter algoncalv

    (@algoncalv)

    thanks for the fast reply. When i use the default theme it works fine.

    Re-upload a fresh, unpacked, copy of the twentyten folder to wp-content/themes using FTP or whatever file management application your host provides.
    http://wordpress.org/extend/themes/twentyten

    Thread Starter algoncalv

    (@algoncalv)

    Oh im sorry for my ignorance. The theme 2012 was not installed since the wordpress version is 3.1.3 and only the theme 2010 (ver. 1.2) is installed.

    I enabled the 2010 version and it worked fine with that theme.

    I did install the 2012 version and i got this message “Fatal error: Call to undefined function is_multi_author() in /home/storage/7/1c/2c/visorpolitico1/public_html/wp-content/themes/twentytwelve/functions.php on line 407”

    do you recommend to update the 2010 version to 1.5 (current)?

    Thread Starter algoncalv

    (@algoncalv)

    deleted

    Why are you using an older version of WordPress?

    Thread Starter algoncalv

    (@algoncalv)

    because that was the version when the site was created. Upgrading is not really a choice since the update might have some conflicts with the old custom theme.

    Thread Starter algoncalv

    (@algoncalv)

    the site used to work just fine. just out of sudden this problem appeared.

    Right now, your site is at real risk of being hacked – if it hasn’t been already. Upgrade WordPress asap. As you have such an old version of WordPress, you will need to carry out a series of smaller manual upgrades. See Upgrading_WordPress_Extended for the full details.

    Thread Starter algoncalv

    (@algoncalv)

    Good point. I will notify the higher ups at my job. Do you still think you can aid me with this problem without updating wordpress?

    You could try uploading the original version of 2010.

    Thread Starter algoncalv

    (@algoncalv)

    No luck. I also tried with version 1.1 but nothing. =(

    Have you tried:

    – deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).

    resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.

    – re-uploading all files & folders – except the wp-content folder – from a fresh download of WordPress 3.1.3. Make sure that you delete the old copies of files & folder before uploading the new ones.

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘Home page loads same posts’ is closed to new replies.