6

如何测试 WP_Query 对象是否不返回任何匹配项?我希望能够做这样的事情,这是一个模板:

<?php
    $my_query = new WP_Query(array('post_type' => 'biographies'))
    if( ***HOW DO I TEST $my_query HERE*** ) {
        //if $my_query finds anything loop through it here
    } else {
        //if $my_query does not find anything            
    }
?>

编辑

更好的例子,如果查询找到任何东西,我只想显示 h2:

<?php
    $outside_leasing_query = new WP_Query(array( 'post_type' => 'resin_biographies', 'tax_query' => array(
        'relation' => 'AND',
        array( 'taxonomy' => 'resin_buildings', 'field' => 'slug', 'terms' => $page_slug ),
        array( 'taxonomy' => 'resin_leasing_companies', 'field' => 'slug', 'terms' => 'rubenstein-partners', 'operator' => 'NOT IN' )
    ) )); // resin_buildings taxonomy term slug must match page slug
?>

<h2>Outside Leasing Contacts</h2>

<?php while ( $outside_leasing_query->have_posts() ) : $outside_leasing_query->the_post(); ?>

    <article <?php post_class('group'); ?>>
        <?php
        if( get_post_meta( $post->ID, '_biography_headshot', true ) != '' ) {
            echo '<img class="contact-thumb" src="' . get_post_meta( $post->ID, '_biography_headshot', true ) . '" alt="'. get_the_title() .'" />';
        } else {
            echo '<img class="contact-thumb-placeholder" src="' . get_bloginfo('template_url') . '/images/default_headshot.jpg" alt="'. get_the_title() . '" />';
        }
        ?>
        <div class="contact-info">
            <hgroup>
                <?php the_title( '<h3>', '</h3>' ); ?>
                <h4 class="contact-title"><?php echo get_post_meta( $post->ID, '_biography_title', true ); ?></h4>
            </hgroup>
            <div class="contact-address"><?php echo wpautop( get_post_meta( $post->ID, '_biography_address', true ) ); ?></div>
            <div class="contact-tel"><span>T</span> <?php echo get_post_meta( $post->ID, '_biography_tel', true ); ?></div>
            <?php if( get_post_meta( $post->ID, '_biography_fax', true ) != '' ) { ?>
                <div class="contact-fax"><span>F</span> <?php echo get_post_meta( $post->ID, '_biography_fax', true ); ?></div>
            <?php } ?>
            <div class="contact-email"><a href="mailto:<?php echo get_post_meta( $post->ID, '_biography_email', true ); ?>"><?php echo get_post_meta( $post->ID, '_biography_email', true ); ?></a></div>
        </div>
    </article>

<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
4

3 回答 3

8

标准的 Wordpress 循环使用 have_posts() 为您执行此操作。

<?php
$my_query = new WP_Query(array('post_type' => 'biographies'));
if($my_query->have_posts()) : while($my_query->have_posts()) : $my_query->the_post();
?>
<!-- YOUR POST(S) -->
<?php endwhile; else : ?>
<p>No posts found</p>
<?php endif; ?>
于 2012-06-08T17:07:13.337 回答
5

我想你可以使用:

!($my_query->have_posts())

所以:

<?php
    $my_query = new WP_Query(array('post_type' => 'biographies'))
    if( !($my_query->have_posts())) {
        //if $my_query finds anything loop through it here
    } else {
        //if $my_query does not find anything            
    }
?>
于 2014-05-08T15:37:51.163 回答
-2

In your first example, where you have the comment:

//if $my_query does not find anything

Just set a parameter like this:

$my_query_found_something = 'not';

Then use it wherever you need like this:

if ($my_query_found_something == 'not') {
// keep looking
}
于 2015-06-22T18:13:58.360 回答