Vote count: 0
How to do with this code only show the "related posts by category"? This code is inside the "single.php" I did not stackoverflow but could not find a solution. Can anyone help me?
<?php
$postsPerPageq = 5;
$allargw = array(
'post_type' => 'audioplayer',
'posts_per_page' => $postsPerPageq,
'orderby' => 'title',
'order' => 'DESC',
'tax_query' => array(
array(
'taxonomy' => 'audiotop',
'field' => 'slug',
'terms' => 'top-audio'
)
)
);
$topaudio = new WP_Query($allargw);
while ( $topaudio->have_posts() ) : $topaudio->the_post();
?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h3>
<?php endwhile; wp_reset_postdata();?>
asked 31 secs ago
Related posts category in wordpress (taxonomy)
Aucun commentaire:
Enregistrer un commentaire