micat1=1
micat2=21
....
Y quiero que en mi index.php unicamente se muestren las categorias 21 (micat2)
Pero no se como ya intente varios metodos pero ninguno resulta funcionar.
No se en que este mal.
Lo mas cercano que logre es esto:
Código PHP :
<?php $recent = new WP_Query(); $recent->query('cat=21'); while($recent->have_posts()) : $recent->the_post(); //query_posts ('Cat =21'); ?> <?php //while ( have_posts() ) : the_post() ?> <?php //if (in_category('21')) {//Si es News de noticia ?> <div class="noticia"> <div class="fechaNoticia"> <?php the_time('F'); ?>. <?php the_time('d'); ?>, <?php the_time('Y'); ?> </div> <div class="conNot1"> <div class="imagenNoticia" style="float:left; padding:0 31px 20px 20px;"> <?php get_the_image( array( 'custom_key' => array( 'feature_img' ), 'size' => 'thumbnail', 'width' => '100', 'height' => '100', 'image_class' => 'feature' ) ); ?> </div> </div> <div class="conNot2"> <div class="not1"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </div> <div class="contenidoNoticia" style="color:#000; padding:0 0 0 7px; margin: 9px 0 0;"> <?php the_excerpt();?> <div class="lin"><a href="<?php the_permalink(); ?>">(Read More)</a></div> </div> </div> </div><!-- Noticia --> <?php //}//Fin de si es News de Noticia?> <?php endwhile; ?>
Y si, logra mostrar solo las categorias 21 en mi index, el problema es cuando quiero agregarle controles de navegacion.
Código :
<div id="nav-previous"><?php previous_post_link ( '%link' , 'Previous in category' , TRUE ); ?> </div> <div id="nav-next"><?php next_post_link ( '%link' , 'Next post in category' , TRUE ); ?> </div>
Se los agrego y haga lo que haga no me permite navegar entre los post filtrados...
Que hago ma?? ayuda de favor.