-1

我使用下面的代码,非常适合已发布的帖子,但我无法显示私人帖子。为什么?

$myquery['tax_query'] = array(
    array(
        'taxonomy' => 'protocols',
        'terms' => $termsa,
        'field' => 'slug',
    )

);
$args = array_merge(
    $myquery, 
    array(
        'paged' => get_query_var('paged'), 
        'posts_per_page' => 7,
        'post_status'     => 'any'

    )
);
query_posts($args);
4

1 回答 1

0

根据WordPress 堆栈交换上的这个答案any,可能无法作为post_status. 使用那里建议的数组是否有效?

于 2012-04-09T18:46:49.197 回答