Hasonló bejegyzések megjelenítése plugin nélkül
Olvasási idő: < 1 perc.
A kapcsolódó bejegyzéseket ezzel a kóddal jelenítheted meg bővítmény nélkül:
<?php $tags = wp_get_post_tags($post->ID); if ($tags) { echo '<h3>Hasonló bejegyzések</h3>'; $first_tag = $tags[0]->term_id; $args = array( 'tag__in' => array($first_tag), 'post__not_in' => array($post->ID), 'showposts' => 7, // how many posts? 'caller_get_posts' => 1 ); $my_query = new WP_Query($args); if ($my_query->have_posts()) { ?> <ul> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul> <?php } ?> <?php } ?>