Esta página al parecer lo hizo así http://www.comercialid.com/ como yo lo quiero, ellos mismos dicen que lo han hecho en wordpress.
Mi código sería algo como esto:
Código PHP:
<?php
/*
Template Name: Categoría Mangueras
*/
?>
<?php get_header(); ?>
<h1>Categoría Mangueras</h1>
<?php
$temp = $wp_query;
$wp_query = null;
$wp_query = new WP_Query();
$wp_query->query('posts_per_page=20'.'&paged='.$paged);
while ($wp_query->have_posts()) : $wp_query->the_post();
?>
<h2 class="nombre-producto"><a href="<?php the_permalink(); ?>" ><?php the_title(); ?></a></h2>
<div class="content">
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
<?php wp_pagenavi(); ?>
<?php get_footer(); ?>
y que me filtre solo los post de la categoría "Mangera" no que me muestre todos los post
Les agradeceré mucho su ayuda, muchas gracias de antemano.