crea un archivo llamado
aleatorio.php y ponle el siguiente contenido:
Código PHP:
<?php
/*
Template Name: Aleatorio
*/
?>
<?php get_header(); ?>
<div id="content" class="narrowcolumn" role="main">
<?php query_posts(array('orderby' => 'rand', 'showposts' => 4, 'category__in' => array(1))); if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="post-c">
<div class="post-cnt">
<h2><span><a href="<?php the_permalink() ?>" rel="bookmark" title="Enlace Permanente a <?php the_title_attribute(); ?>"><?php the_title(); ?></a></span></h2>
<small class="date"><?php the_time('M') ?><br /><?php the_time('j') ?></small>
<p>Autor: <?php the_author(); ?></p>
<?php if (function_exists('author_exposed')){author_exposed();} ?>
<div class="entry">
<?php the_content('Leer más »'); ?>
</div>
</div>
</div>
<div class="post-b">
<div class="post-cnt post-meta">
<p>Posted in <?php the_category(', ') ?></p>
<?php the_tags('<p>Tags: ', ', ', '</p>'); ?>
<span class="num-comments"><?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?></span>
</div>
</div>
</div>
<?php endwhile; ?>
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
<?php else : ?>
<h2 class="center">No se encuentra!!</h2>
<p class="center">¡Mmm... Estás buscando algo que no esta aquí!</p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
en este codigo vas a buscar la linea
Código PHP:
<?php query_posts(array('orderby' => 'rand', 'showposts' => 4, 'category__in' => array(1))); if (have_posts()) : ?>
y donde dice
'category__in' => array(1) vas a cambiar el "1" por el numero de tu categoria que quieres mostrar y donde dice
'showposts' => 4 cambia el "4" por la cantidad de post que quieres mostrar.
guardas los cambios.
entras a WP, vas a
paginas y crea una
pagina nueva.
NO LE ESCRIBAS CONTENIDO.
a la derecha dice
Atributos de pagina (a la derecha de donde se escriben los post)
veras algo que dice
Usar plantilla, es una lista desplegable, buscas "
aleatorio" y lo seleccionas
ahora pones
Guardar/Actualizar para que se graben los cambios en la pagina.
Visitala y dime si se dio el resultado