首页 > 解决方案 > 我如何获得自定义帖子类型类别项目 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;
?> 

标签: phpwordpress

解决方案


推荐阅读