• Resolvido omegafilmes

    (@omegafilmes)


    Colegas,

    Não sei o que está havendo, quando clico na numeração da página que eu quero ir, ele me encaminha para uma página “not found”. Já pesquisei em diversos lugares, sei que o problema possa estar no editor com defeito em algum código, mais já revirei inúmeros sites e até o momento não consegui.
    O código da minha index.php é

    <?php get_header(); ?>
    
    <?php
    if(get_option('boxof_home') == "movies") { ?>
    <?php include (TEMPLATEPATH . '/lib/movie-home.php'); ?>
    <?php } else { ?>
    
    <div id="content">
    
    <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?>
    <?php query_posts("cat=2&showposts=10&paged=$paged"); ?>
    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
    
    <div class="post" id="post-<?php the_ID(); ?>">
    <div class="title">
    <h2><a>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
    </div>
    <div class="postmeta">
    	<span class="author">Posted by <?php the_author(); ?> </span> <span class="clock">  <?php the_time('M - j - Y'); ?></span> <span class="comm"><?php comments_popup_link('0 Comment', '1 Comment', '% Comments'); ?></span>
    </div>
    <div class="entry">
    
    <?php
    if ( has_post_thumbnail() ) { ?>
    	<img class="postimg" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php get_image_url(); ?>&h=150&w=200&zc=1" alt="" />
    <?php } else { ?>
    	<img class="postimg" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php bloginfo('template_directory'); ?>/images/dummy.jpg&h=120&w=200&zc=1" alt="" />
    <?php } ?>
    
    <?php wpe_excerpt('wpe_excerptlength_index', ''); ?>
    
    <div class="clear"></div>
    </div>
    
    <div class="singleinfo">
    <span class="category">Categories: <?php the_category(', '); ?> </span>
    </div>
    
    </div>
    <?php endwhile; ?> <div align=”center”><?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } ?></div>
    
    <?php getpagenavi(); ?>
    
    <?php else : ?>
    
    	<h1 class="title">Not Found</h1>
    	<p>Sorry, but you are looking for something that isn't here.</p>
    
    <?php endif; ?>
    
    </div>
    <?php } ?>
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
Visualizando 16 resposta (de um total de 16)
  • Moderador Eduardo Zulian

    (@eduardozulian)

    Que servidor é o seu?

    Cê tem o arquivo do tema ainda? Chegou a fazer modificações nele? Quem sabe reinstalá-lo te ajude!

Visualizando 16 resposta (de um total de 16)
  • O tópico ‘Paginação na home’ está fechado para novas respostas.