Hi:
The page's structure in Post Content is:
-Post Loop
-Custom Section
- Post/Page Paginator
Te content shows perfect, but the paginator dont load
The custom section only shows the post of a determinated category, the code:
<?php
/*
Section: ListadoTemaGestion
Author: PageLines
Author URI:
Description: Listado Tema Gestion
Class Name: ListadoTemaGestion
Workswith: main
Failswith: 404_page
*/
/**
* Main Post Loop Section
*
* @package PageLines Framework
* @author PageLines
*/
class ListadoTemaGestion extends PageLinesSection {
function section_template() {
echo ' <div class="entry-content"> ';
?>
<h2>TEMA : GESTIÓN</h2>
<?php
echo '<ul>';
if ( have_posts() )
{
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args=array(
'category_name' => 'tema_gestion',
'showposts' => 20,
'paged'=>$paged,
);
query_posts($args);
while ( have_posts() ){
the_post(); ?>
<li><a href="<?php the_permalink();?>"><?php the_title(); ?></a></li>
<?php
}
echo '</ul>';
echo '<br /><br />';
}
else
{
echo 'No hay artÃculos';
}
echo '</div>';
}
}
WHat is the problem? :-(
The Web:










