Hola, eh intentado usar este código en index.php justo antes de.
Código PHP:
<div class="content">
<?php if (have_posts()) : ?>
De manera que me queda así.
Código PHP:
<!-- INICIO RANDOM POSTS -->
<div class="main">
<div class="rand">
<h3>El título que quieras</h3>
<?php
query_posts(array('orderby' => 'rand', 'showposts' => 1)); //NUMERO ENTRADAS
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<div class="info"><a href="<?php the_permalink() ?> " rel="bookmark" class="title"> <?php the_title(); ?></a></div>
<?php endwhile; endif;?>
</div>
</div>
<!-- FINAL RANDOM POSTS -->
<div class="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
Pero por algun motivo las entradas del blog se sienten afectadas y también se muestran de forma aleatoria.
Alguna idea de por que puede ser?