El query del rocket es:
Código PHP:
$catslug = get_category_by_slug($instance['catid']);
$roknewsflash = new WP_Query('cat='.$catslug->term_id.'&posts_per_page='.$instance['article_count'].'&orderby='.$instance['itemsOrdering']);
// Load Layouts
if(file_exists(TEMPLATEPATH. DS .'html'. DS .'plugins'. DS .'wp_roknewsflash'. DS .'default.php')) :
require(TEMPLATEPATH. DS .'html'. DS .'plugins'. DS .'wp_roknewsflash'. DS .'default.php');
else :
require($roknewsflash_plugin_path. DS .'tmpl'. DS .'default.php');
endif;
wp_reset_query();
Código PHP:
<div id="newsflash" class="roknewsflash">
<span class="flashing"><?php echo $instance['pretext']; ?></span>
<ul style="margin-left:<?php echo $instance['news_indent']; ?>px;list-style-type:circle;">
<?php if($roknewsflash->have_posts()) : while($roknewsflash->have_posts()) : $roknewsflash->the_post(); ?>
<li style="padding: 0px 0 20px 0px;margin: 0 0 0px 0;">
<?php echo get_the_date(); ?> <a href="<?php the_permalink(); ?>" rel="bookmark" style="font-weight: bold;"><?php the_title(); ?> </a>
</li>
<?php endwhile; endif; ?>
</ul>
</div>
Aquí os dejo un query simple en que si funciona:
Código:
Este query si funciona, debo estar medio cegato pero no veo ninguna diferencia destacable para que uno funcione y el otro no <?php query_posts('category_name=breves&showposts=6'); ?> <center><a href="http://elpeloton.net46.net/category/breves/" style="font-weight: bold;color: #fff;">Noticias breves:</a></center><br> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php echo get_the_date(); ?> <a href="<?php the_permalink(); ?>" rel="bookmark" style="font-weight: bold;color: #fff;"><?php the_title(); ?> </a><br><br> <?php endwhile; else : ?> <?php endif; ?> <?php wp_reset_query(); ?>