I would like to know if you can help me, I am trying to check if there is any post in a certain category to do validation and if and then, but without much success so far.
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?>
<?php if ( have_posts("cat=13") ) { ?>
<?php query_posts("cat=13&showposts=9&paged=$paged"); ?>
Sucesso
} else {
Falhou
?>
<?php } ?>
<?php wp_reset_query();?>