E
eic2010
Beta
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Hola como están? quisiera saber como puedo mostrar Posts Relacionados por los Tags? a continuación le muestro los que tengo ( porque a alguien le puede servir), posts relacionado por categoría y posts aleatorios, pero me falta por tags :ambivalence:
La idea es que el visitante tenga mas opciones para seguir navegando es nuestras webs :topsy_turvy:
PHP:
<div class='sigue'> POST RELACIONADOS POR CATEGORIA</div>
<?php
$rand_posts = get_posts('category_name="MICATEGORIA"&showposts=2');
foreach( $rand_posts as $post ) : ?>
<div class="article-loop" >
<?php if ( has_post_thumbnail() ) { ?>
<div class='post-thumb'>
<a href="<?php the_permalink();?>" >
<?php the_post_thumbnail(''); ?>
</a>
</div>
<?php the_category(); ?>
<h7><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h7>
<?php } ?>
</div>
<?php endforeach; ?>
<div class='sigue'> POST ALEATORIOS</div>
<?php
$rand_posts = get_posts('numberposts=4&orderby=rand');
foreach( $rand_posts as $post ) : ?>
<div class="article-loop" >
<?php if ( has_post_thumbnail() ) { ?>
<div class='post-thumb'>
<a href="<?php the_permalink();?>" >
<?php the_post_thumbnail(''); ?>
</a>
</div>
<?php the_category(); ?>
<h7><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h7>
<?php } ?>
</div>
<?php endforeach; ?>
La idea es que el visitante tenga mas opciones para seguir navegando es nuestras webs :topsy_turvy: