Ver Mensaje Individual
  #1 (permalink)  
Antiguo 15/08/2011, 21:47
mesoriginal
 
Fecha de Ingreso: septiembre-2008
Mensajes: 211
Antigüedad: 15 años, 7 meses
Puntos: 2
Paginador Wordpress

Hola buenas tardes,

Tengo el siguiente probleam:

Instalé el "Original Premium Press" del WooThemes version gratis i en la portada me aparecen los ultimos 6 posts publicados. (Se puede elegir de 0 a 20 ultimos posts).

El problema esque no hay ningun paginador y no se pueden ver los otros posts con el mismo formato (estilo) que hay en la portada.

El codigo que imprime la portada és el siguiente:

Código PHP:
<div class="box">

    <?php

        $the_query 
= new WP_Query('cat=-'$GLOBALS[ex_feat] . ',-' $GLOBALS[ex_vid] . '&showposts=' get_option('woo_other_entries') . '&orderby=post_date&order=desc');

        
$counter 0$counter2 0;

        while (
$the_query->have_posts()) : $the_query->the_post(); $do_not_duplicate $post->ID;
    
?>

        <?php $counter++; $counter2++; ?>

        <div class="post <?php if ($counter == 1) { echo 'fl'; } else { echo 'fr'$counter 0; } ?>">

            <?php woo_image('height=57&width=100&class=th'); ?>

            <h2><?php the_category(', '?></h2>
            <h3><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
            <p class="posted"><?php _e('Posted on',woothemes); ?> <?php the_time('d F Y'); ?></p>
            <p><?php echo strip_tags(get_the_excerpt(), '<a><strong>'); ?> <span class="continue"><a title="<?php _e('Permanent Link to',woothemes); ?> <?php the_title(); ?>" href="<?php the_permalink() ?>"><?php _e('Continue Reading',woothemes); ?></a></span></p>
            <p class="comments"><?php comments_popup_link(__('Comments (0)',woothemes), __('Comments (1)',woothemes), __('Comments (%)',woothemes)); ?></p>

        </div><!--/post-->

        <?php if ( !($counter2 == get_option('woo_other_entries')) && ($counter == 0) ) { echo '<div class="hl-full"></div>'?> <div style="clear:both;"></div> <?php ?>

    <?php endwhile; ?>

    <div class="fix" style="height:20px"></div>

    <p class="ar hl3"><a href="<?php echo get_option('woo_archives'); ?>" class="more"><?php _e('SEE MORE ARTICLES IN THE ARCHIVE default',woothemes); ?></a></p>

</div><!--/box-->
Alguna idea? Gracias