• Resolvido yeltsinlima

    (@yeltsinlima)


    Olá pessoal,

    estou com um blog de cliente que fica mostrando sempre a mesma data. Ele postou um artigo hoje (26 de março) e no post fica exibindo que é dia 03 de março.

    Olhei no servidor e no próprio WordPress e a data está certa. Até mesmo dentro do post, no back-end, fica exibindo a data certa.

    Como resolver isso?

    Código do loop:

    <?php query_posts('cat=' . '&paged=' . get_query_var('paged')); ?>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
                	<article id="post-<?php the_ID(); ?>" class="news">
    
    					<div class="titulo">
                            <div class="pink">
                                <h2><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="meta">postado por <?php the_author_link(); ?> em <?php the_date(); ?> na categoria <?php the_category(', '); ?></div>
                            </div>
    
                            <div class="likebutton">
    						<iframe src="http://www.facebook.com/plugins/like.php?href=<?php the_permalink(); ?>&layout=button_count&show_faces=false&width=90&action=like&colorscheme=light&height=31" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:90px; height:31px;" allowTransparency="true"></iframe>
                            </div>
                        </div>
    
      					<?php the_content(); ?>
    
                        <span class="tags"> <?php the_tags(' ', ', ', '<br />'); ?> </span>
    
                        <span class="comments"><?php comments_popup_link( __( 'Deixe um comentário', '' ), __( 'Um comentário', '' ), __( '% comentários', 'twentyten' ) ); ?></span>
    
                        <span class="share">
                        	<ul>
                            	<li class="twitter"><a href="http://twitter.com/home?status=Estou lendo <?php the_permalink(); ?>" title="Click to send this page to Twitter!" target="_blank">Twitter</a></li>
                                <li class="facebook"><a href="http://facebook.com/share.php?u=<?php the_permalink() ?>&t=<?php echo urlencode(the_title('','', false)) ?>">facebook</a></li>
                                <li class="stumbleupon"><a href="http://stumbleupon.com/submit?url=<?php the_permalink() ?>&title=<?php echo urlencode(the_title('','', false)) ?>">stumbleupon</a></li>
                                <li class="digg"><a href="http://digg.com/submit?phase=2&url=<?php the_permalink() ?>&title=<?php echo urlencode(the_title('','', false)) ?>">digg</a></li>
                                <li class="email"><?php if(function_exists('wp_email')) { email_link(); } ?></li>
                            </ul>
                        </span>
    
                    </article>
    
                    <div class="linha">
                    </div>
    
    				<?php endwhile;?>
                    <?php else : ?>
                    <?php endif; ?>

A visualizar 2 respostas - de 1 a 2 (de um total de 2)
A visualizar 2 respostas - de 1 a 2 (de um total de 2)
  • O tópico ‘Data sempre a mesma’ está fechado a novas respostas.