2

我已经尝试了三天,即使在这个网站上使用解决方案。我仍然无法正常工作。

我有一个 wordpress 循环,它使用过滤器按帖子类型显示帖子。现在帖子类型称为“案例研究”因此显示类型案例研究中的所有帖子。

但我需要从这个循环中隐藏一个特定的分类术语。分类法称为“部门”,术语是“医疗保健”。我尝试了各种组合,但仍然无法得到这个。我需要这个非常紧急。任何能帮助我的人都会救我的命。

这是查询和循环

<?php
// The Query
$the_query = new WP_Query( 'post_type=case-studies&posts_per_page=-1' );

// The Loop
while ( $the_query->have_posts() ) :
    $the_query->the_post(); 


?>
4

3 回答 3

3
    $args = array(
    'post_type' => 'case-studies',
    'tax_query' => array(
        array(
            'taxonomy' => 'sectors',
            'field' => 'slug',
            'terms' => array('comercial', 'personal', 'etc') //excluding the term you dont want.
        )
    )
);
$query = new WP_Query( $args );

我不想尝试,但您可以只调用您想要的术语进行查询,您可以之前填充术语数组列出分类中的所有术语并排除您想要的术语,我认为这有点 hacky 它应该是另一种直接的方法,但试一试,因为它是生死攸关的案例=)。

来源:http ://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters

于 2013-10-21T09:43:34.623 回答
1

试试这个:

<?php
$type = 'cpreviews';
$args=array(
  'post_type' => $type,
  'post_status' => 'publish',
  'posts_per_page' => -1,
  '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() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></p>
    <?php
  endwhile;
}
wp_reset_query();  // Restore global post data stomped by the_post().
?>
于 2013-10-21T10:08:10.880 回答
0

好的,然后试试这个,它会提取你的术语并排除你不想要的术语,我没有检查它是否有效,但这是逻辑,请检查sintax错误。

$terms = get_terms("sectors");
$count = count($terms);
$termsAr = array();
if ($count > 0 ){
    foreach ( $terms as $term ) {
        if($term->name !== "healthcare"){//Here we exclude the term or terms we dont want to show
            array_push($termsAr, $term->name);
        }
    }
}

$terms = get_terms("types");
$count = count($terms);
$termsAr2 = array();
if ($count > 0 ){
    foreach ( $terms as $term ) {
        if($term->name !== "healthcare"){//Here we exclude the term or terms we dont want to show
            array_push($termsAr2, $term->name);
        }
    }
}
 $args = array(
    'post_type' => 'case-studies',
    'tax_query' => array(
        'relation' => 'AND',
        array(
            'taxonomy' => 'sectors',
            'field' => 'slug',
            'terms' => $termsAr //excluding the term you dont want.
        ),
        array(
            'taxonomy' => 'types',
            'field' => 'slug',
            'terms' => $termsAr2 //excluding the term you dont want.
        )
    )
);
$query = new WP_Query( $args );
于 2013-10-21T13:36:57.957 回答