12/10/2010, 22:38
|
| | | Fecha de Ingreso: octubre-2010 Ubicación: Chillán, Chile, Chile
Mensajes: 42
Antigüedad: 14 años, 1 mes Puntos: 0 | |
Respuesta: !ayuda! mostrar post enteros en pagina principal Cita:
Iniciado por iwexcoder Sin ver el código es difícil poder adivinar, todavía esos poderes no tenemos...por el momento, escribe el código del loop de los post del index para ver que parte de código debes borrar.
Código HTML:
Ver original<?php if (is_archive()) $post_number = get_option('polished_archivenum_posts'); if (is_search()) $post_number = get_option('polished_searchnum_posts'); if (is_tag()) $post_number = get_option('polished_tagnum_posts'); ?> <?php get_header(); ?> <?php global $query_string; query_posts($query_string . "&showposts=$post_number&paged=$paged"); ?> <!-- Main Content--> <img src="<?php bloginfo('stylesheet_directory');?>/images/content-top.gif" alt="content top" class="content-wrap" /> <!-- Start Main Window --> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php include(TEMPLATEPATH . '/includes/entry.php'); ?> <?php endwhile; ?> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?> <?php include(TEMPLATEPATH . '/includes/navigation.php'); ?> <?php } ?> <?php else : ?> <?php include(TEMPLATEPATH . '/includes/no-results.php'); ?> <?php endif; wp_reset_query(); ?> <!-- End Main --> <?php get_sidebar(); ?> <?php get_footer(); ?>
|