Estoy utilizando este codigo
Código PHP:
<div class="tabpost">
<?php if($featucatn = '') : ?>
<?php query_posts('showposts=3'); ?>
<?php while (have_posts()) : the_post(); ?>
<h4><?php the_title();?></h4>
<?php endwhile;?>
<?php else : ?>
<?php
$featucatn = get_option('grft_gldcatn');
$my_query = new WP_Query('showposts=5&category_name='. $featucatn .'');
if ($my_query->have_posts()) :
?>
<?php while ($my_query->have_posts()) : $my_query->the_post();$do_not_duplicate = $post->ID; ?>
<h4><?php the_title();?></h4>
<?php endwhile; ?>
<?php endif; ?>
<?php endif; ?>
</div>
Y no doy con el error, cualquier ayuda u orientacion les estaria muy agradecido.