Como inserir posts relacionados por tags sem plugin
Vejamos como obter os posts relacionados sem a utilização de Plugins, que sobrecarregam muito o site, portanto, quanto menos Plugins, melhor. Esse código pode ser exibido por categorias ou também por somente tags, fica a seu critério. Abaixo, segue um modelo de como mostrar seus posts relacionados por tags.
Copie e cole o código abaixo no seu functions.php:
<?php function show_related_posts_by_tag(){ global $post; $tags = wp_get_post_tags($post->ID); if ($tags) { $tag_ids = array(); foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id; $args=array( 'tag__in' => $tag_ids, 'post__not_in' => array($post->ID), 'posts_per_page' => 10 // Números que irão aparecer de posts relacionados. ); $my_query = new wp_query($args); if( $my_query->have_posts() ) { echo '<h3>Posts Relacionados</h3><ul>'; while ($my_query->have_posts()) { $my_query->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li> <?php } echo '</ul>'; wp_reset_query(); //reseting custom query... } } } ?>
No arquivo single.php, coloque o código abaixo mencionado onde deseja que seus posts relacionados apareçam:
<?php show_related_posts_by_tag(); ?>
Pronto, simples e funcional.
Deixar comentário