Code php bài viết cùng nhóm tin tức – wordpress.org

99

các bạn mở file single.php và thêm đoạn code:

<?php
$tag = get_the_category( get_the_ID() );
if ( $tag )
echo ‘<h3 class=”relate-title”>Bài đăng cùng:’;
the_category(‘, ‘);
echo ‘</h3>’;
$t = $tag[0];
if ($t) {
$r = new WP_Query(array(‘posts_per_page’=> 9, ‘post__not_in’=> array( get_the_ID() ),
‘category_name’=> $t->slug ));
echo ‘<ol class=”show-more-post”>’;
while ( $r->have_posts()): $r->the_post();
echo ‘<li><a href=”‘.get_permalink().'”>’.get_the_title().'</a></li>’;
endwhile;
echo ‘</ol>’;
wp_reset_postdata();
}
?>