Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Forum: Fixing WordPress
    In reply to: Navigation links
    Thread Starter vintem12

    (@vintem12)

    Yes I do.
    http://blogedesign.com.br/site/

    I don’t know if you noticed, but I have comment at the beginning of index.php:
    <!– index.php –>

    At the home page, this comment appears, if I click Next Page, it doesn’t.

    Forum: Fixing WordPress
    In reply to: Navigation links
    Thread Starter vintem12

    (@vintem12)

    It is a custom built theme, but here is how it is my index.php page:

    <?php get_header();?>
    <script type="text/javascript">
    	$(function(){
    		$(".home").removeClass("home").addClass("homeAtivo");
    	});
    </script>
    <!-- index.php -->
    <div class="areaPost">
    	<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
    		<div class="postBlog">
    			<!-- começa um post -->
    			<div class="espTituloPost">
    				<a href="<?php the_permalink();?>" title="<?php the_title(); ?>" class="TituloPost"><?php the_title();?></a>
    			</div> <!--.espTituloPost -->
    
    			<div class="infoPost">
    				<span class="dataPost"><?php the_date(); ?></span> |
    				<!--<a href="" class="comentariosPost">10 comentários</a>-->
    				<?php comments_popup_link('Sem coment&aacute;rios', '1 coment&aacute;rio', '% coment&aacute;rios;', 'comentariosPost'); ?>
    			</div> <!--.infoPost -->
    
    			<?php the_content();?>
    
    			<div class="areaTags">
    			<!--tags: <a href="" class="tagsPost">nome_tag</a>, <a href="" class="tagsPost">nome_tag</a>, <a href="" class="tagsPost">nome_tag</a>-->
    			<?php the_tags('tags: ', ',', ''); ?>
    			</div> <!--.areaTags -->
    
    			<!-- termina um post -->
    		</div>
    	<?php endwhile; ?>
    			<div class="areaPaginacao">
    	                <?php previous_posts_link('&laquo; Prev Page') ?>
    			<?php next_posts_link('Next Page &raquo;') ?>
                        </div> <!--areaPaginacao -->
    	<?php endif; ?>
    </div> <!--.areaPost -->
    
    <?php get_sidebar(); ?>
    
    <?php get_footer();?>

    Forum: Fixing WordPress
    In reply to: Navigation links
    Thread Starter vintem12

    (@vintem12)

    I tried this way also, but faced the same issue.
    Do you know which page WP renders when it shows blog/page/2? Because it seems it is not index.php anymore.

    Thread Starter vintem12

    (@vintem12)

    But everything else is working nice.
    And if I take that command and run it directly on mysql server, it runs ok.

Viewing 4 replies - 1 through 4 (of 4 total)