<?php
$wpq_data = array(
'post_type'=>'page',
'tax_query' => array (
array (
'taxonomy' => 'blog-cat',
'field' => 'slug'
)
),
'paged'=>'paged',
'orderby' => 'post_date',
'order'=>'DESC',
'post_status'=>'publish',
'numberposts'=>6
);
$mwp = get_posts($wpq_data);
foreach ($mwp as $post): setup_postdata($post);
?>
<a href="<?php echo the_permalink()?>"><?php echo the_title(); ?></a>
<?php endforeach; wp_reset_postdata(); ?>
<?php
$wpq_data = array(
'post_type'=>'page',
'tax_query' => array(
array(
'taxonomy' => 'blog-cat', //название таксономии
'terms' => 'price', //название категории
'field' => 'slug', // сортировка по slug
'include_children' => true,
'operator' => 'IN'
)
),
'post_status'=>'publish',
'numberposts'=>-1
);
$mwp = get_posts($wpq_data);
foreach ($mwp as $post): setup_postdata($post);
?>
<a href="<?php echo the_permalink()?>"><?php echo the_title(); ?></a>
<?php endforeach; wp_reset_postdata(); ?>