Estoy usando este código:
Código PHP:
Ver original<?php
//for use in the loop, list 5 post titles related to first tag on current post
$tags = wp_get_post_tags($post->ID);
if ($tags) {
$first_tag = $tags[0]->term_id;
'tag__in' => array($first_tag), 'post_type' => reviews,
'post__not_in' => array($post->ID), 'showposts'=>10,
'caller_get_posts'=>1
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p>
<?php
$juego = get_post_meta($post->ID, "Carátula del juego", true);
$altura = get_post_meta($post->ID, "Tipo de carátula", true);
$extracto = get_post_meta($post->ID, "Descripción", true);
?>
<div class="juego-item"><div class="thumbd"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" alt="<?php the_title(); ?>"><img src="<?php echo($juego) ?>" align="left" class="<?php echo($altura) ?>" title="<?php the_title(); ?>" alt="<?php the_title(); ?>"></a></div>
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="entry-content">
<?php echo($extracto); ?>
</div>
</div>
<?php
endwhile;
}
else { echo ""; }
}
?>
Y me gustaría meter en el "else {echo}" este código:
<a href="<?php echo($imagen1) ?>"><img src="http://www.actualidadconsolas.com/wp-content/themes/GamerAC/scripts/timthumb.php?src=<?php echo($imagen1) ?>&h=150&w=150&zc=1&q=100&cropfrom=center" align="left" class="alignnone size-thumbnail galeria" height="150" width="150"></a> <a href="<?php echo($imagen2) ?>"><img src="http://www.actualidadconsolas.com/wp-content/themes/GamerAC/scripts/timthumb.php?src=<?php echo($imagen2) ?>&h=150&w=150&zc=1&q=100&cropfrom=center" align="left" class="alignnone size-thumbnail galeria" height="150" width="150"></a> <a href="<?php echo($imagen3) ?>"><img src="http://www.actualidadconsolas.com/wp-content/themes/GamerAC/scripts/timthumb.php?src=<?php echo($imagen3) ?>&h=150&w=150&zc=1&q=100&cropfrom=center" align="left" class="alignnone size-thumbnail galeria" height="150" width="150"></a> <a href="<?php echo($imagen4) ?>"><img src="http://www.actualidadconsolas.com/wp-content/themes/GamerAC/scripts/timthumb.php?src=<?php echo($imagen4) ?>&h=150&w=150&zc=1&q=100&cropfrom=center" align="left" class="alignnone size-thumbnail galeria" height="150" width="150"></a> <a href="<?php echo($imagen5) ?>"><img src="http://www.actualidadconsolas.com/wp-content/themes/GamerAC/scripts/timthumb.php?src=<?php echo($imagen5) ?>&h=150&w=150&zc=1&q=100&cropfrom=center" align="left" class="alignnone size-thumbnail galeria" height="150" width="150"></a>