Oye chicos, no hace falta ponerse tan agresivos.. realmente no pensé que fuese necesario, pero si estaba equivocado, pido disculpas por haceros perder el tiempo. No pienso que me vayáis a robar el código ni nada así. Buen rollo y tal :D
Y
j_aroche, no me ha funcionado, me crea un enlace a /page/$randompage :S
Bueno, este es el index.php de mi theme (ET-Starter 1.4):
Código PHP:
Ver original<?php
global $options;
foreach ($options as $value) {
if (get_settings( $value['id'] ) === FALSE) {
} else {
$$value['id'] = stripslashes( get_settings
( $value['id'] ) ); }
}
?>
<?php get_header(); ?>
<?php /* Enables two or three columns */
if ($et_threecolumn_disable == "false") { ?> <?php include(TEMPLATEPATH."/sidebar.php");?><?php } ?>
<div class="content <?php if ($et_threecolumn_disable == "false") { ?> <?php echo $et_columnorder; ?> <?php } else { ?> content-two-column<?php echo $et_columnorder; ?> <?php } ?>">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<h2><?php the_time('F jS, Y') ?> | <?php the_category(', ') ?> | <?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?></h2>
<div class="entry">
<?php the_content('Read More'); ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
<?php if (function_exists('the_tags')) { the_tags
('<p class="postmetadata">Tags: ', ', ', '</p>'); } ?> </div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft" class="linkleft"><?php previous_posts_link('<img src="left.png">') ?></div>
<div class="linkcenter">
<?php $randomPost = $wpdb->get_var("SELECT guid FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY rand() LIMIT 1"); echo '<a href="'.$randomPost.'" title="Random"><img src="random.png" alt="Random"></a>'; ?>
</div>
<div class="alignright" class="linkright"><?php next_posts_link('<img src="right.png">') ?></div>
</div>
<?php else : ?>
<div class="post">
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
</div>
<?php endif; ?>
</div>
<?php include(TEMPLATEPATH."/primary-sidebar.php");?>
<?php get_footer(); ?>
¡Gracias de nuevo por vuestro tiempo!