wordpress - 显示不包含特定标签的帖子列表

时间:2015-01-09 01:50:13

标签: php wordpress tags

我想显示具有特定标记但没有其他特定标记的帖子列表。例如,我尝试了以下内容来显示具有“动物”标签的帖子列表。

<?php 
    $args = array(
        'numberposts' => 1,
        'tag' => 'animal',
        'showposts' => 8
         );
    $query = new WP_Query($args);
    if($query->have_posts()):
        echo '<table>';
        while($query->have_posts()): $query->the_post();
             the_title(); ?> </a></td>

        endwhile;

    endif;
    wp_reset_query();                     

?>

我们如何在'animal'标签中显示帖子列表,但不在'cat'标签中显示? 我是wordpress的新手,刚学会了创建自定义页面。

2 个答案:

答案 0 :(得分:1)

你将不得不在这里使用tax_query来完成这项工作。正常的标签参数不会完成这项工作。

关于原始代码的几点说明

  • showposts折旧,支持posts_per_page

  • numberpostsWP_Query

  • 中无效
  • wp_reset_postdata()用于WP_Querywp_reset_query()query_posts一起使用,永远不会被使用

  • 您需要在wp_reset_postdata()

    之后endif之前致电endwhile

你需要这样的东西

$args = array(
    'posts_per_page' => '8',
    'tax_query' => array(
        'relation' => 'AND',
        array(
            'taxonomy' => 'post_tag',
            'field'    => 'slug', //Can use 'name' if you need to pass the name to 'terms
            'terms'    => 'animal', //Use the slug of the tag
        ),
        array(
            'taxonomy' => 'post_tag',
            'field'    => 'slug',
            'terms'    => 'cat',
            'operator' => 'NOT IN',
        ),
    ),
);
$query = new WP_Query( $args );

答案 1 :(得分:0)

您可以使用tag__not_in参数(see here),但您需要cat标记的term_id。也许是这样的:

<?php 
// get term_id of unwanted cat tag for tag__not_in param
$tag = get_term_by('name', 'cat', 'post_tag');

$args = array(
    'numberposts' => 1,
    'tag_slug__in' => array('animal'),
    'tag__not_in' => array($tag->term_id),
    'showposts' => 8
     );

$query = new WP_Query($args);
if($query->have_posts()):
    echo '<table>';
    while($query->have_posts()): $query->the_post();
         the_title(); ?> </a></td>

    endwhile;

endif;
wp_reset_query();                     

?>