15/06/2011, 09:43
|
| | Fecha de Ingreso: junio-2011
Mensajes: 6
Antigüedad: 13 años, 5 meses Puntos: 1 | |
Respuesta: Problema con la paginación en wordpress Pego home.php:
<?php get_header(); ?>
<?php
$ppp = $GLOBALS['_latest_posts_number'];
$id = get_cat_id('Portfolio');
$q = "showposts=".$ppp."&cat=-".$id;
query_posts($q);
?>
<?php include(TEMPLATEPATH . '/blog.php'); ?>
<?php include(TEMPLATEPATH . '/navigation.php'); ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
-----------------------------------
Probé lo siguiente pero tampoco funcionó:
<?php get_header(); ?>
<?php
$ppp = $GLOBALS['_latest_posts_number'];
$id = get_cat_id('Portfolio');
$q = "showposts=".$ppp."&cat=-".$id;
query_posts($q);
?>
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<?php include(TEMPLATEPATH . '/post.php'); ?>
<p> </p>
<?php endwhile ?>
<?php endif; ?>
<?php include(TEMPLATEPATH . '/navigation.php'); ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?> |