我正在尝试使用下面的代码显示来自名为投资组合的自定义帖子类型的帖子,然后按类别过滤结果,我尝试将 - category_name , catid,portfolio_category 放入数组中
并浏览了论坛并尝试了一些东西,但似乎无法使其正常工作,它要么不显示任何内容,要么显示所有类别的所有帖子。
<?php
$args=array(
'post_type' => 'portfolio',
'post_status' => 'publish',
'posts_per_page' => 7,
'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to
<?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
<?php
endwhile;
}
wp_reset_query(); // Restore global post data stomped by the_post().
?>
注册的分类是portfolio_category,对此的任何帮助将不胜感激,非常感谢