我如何获得Custum Post Type类别项目Wordpress

时间:2019-03-19 13:24:56

标签: php wordpress

我的代码是获取所有投资组合项目,但我只需要一个类别项目。

这些是我的类别。 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;
?> 

0 个答案:

没有答案