我的代码是获取所有投资组合项目,但我只需要一个类别项目。
这些是我的类别。 http://prntscr.com/mzzjfy
非常抱歉,我的语言不好。
<?php
$args = array(
'post_type' => 'dt_portfolio',
'orderby' => 'meta_value',
'order' => 'ASC',
'posts_per_page' => '50',
);
$rhy_query = new WP_Query($args);
while ($rhy_query->have_posts()): $rhy_query->the_post();
the_title();
endwhile;
?>