Hi guys,
thanks but I found what I wanted to by adding the following in my code
`<?php
// WP 3.0 PAGED BUG FIX
if ( get_query_var(‘paged’) )
$paged = get_query_var(‘paged’);
elseif ( get_query_var(‘page’) )
$paged = get_query_var(‘page’);
else
$paged = 1;
$args = array(
‘post_type’ => ‘post’,
‘cat’ => 5,
‘paged’ => $paged );
query_posts($args);
?>`
The line ‘cat’ => 5, is what I’ve added here.
“5″ is the value of the category I want to display.
Guido, display a category in the menu was not exactly what I’ve asked for
Thank you anyway
Ben