0

我想跳过所有没有缩略图的帖子。代码还不能正常工作。

实际上,该脚本不会显示没有缩略图的帖子 - 这很好,但在循环中,没有缩略图的帖子仍被视为帖子。

因此,例如,当我的 wordpress 数据库中有 10 个帖子时。我想展示其中的 5 个。但只有那些有缩略图的帖子。

<ul>

    <?php

    $args = array(  'numberposts'  => 5,  
                    'orderby'      => 'date',  
                    'order'        => 'DESC',
                    'post_type'    => 'post',
                    'post_status'  => 'publish' 
                );

    $my_posts = get_posts( $args );
    global $post;
    foreach( $my_posts as $post ) : setup_postdata($post); 

    if ( !has_post_thumbnail() ) { 
        continue;             
    } else {

    ?>

        <li>
            <div class="clearfix" >
                <div class="thumb"><?php the_post_thumbnail('post-image-big'); ?></div>
                <a href="<?php the_permalink(); ?>" class="title"><?php the_title(); ?></a>
                <p class="category"><?php the_category(', '); ?></p>
            </div>
        </li>

    <?php } ?>

    <?php endforeach; ?>

</ul>
4

1 回答 1

1

尝试

$args = array(  'numberposts'  => 5,  
                'orderby'      => 'date',  
                'order'        => 'DESC',
                'post_type'    => 'post',
                'post_status'  => 'publish' ,
                'meta_query' => array(
                    array(
                        'key' => '_thumbnail_id',
                        'compare' => '!=',
                        'value' => ''
                    )
                )
            );

或者如果检查空字符串对您不起作用

$args = array(  'numberposts'  => 5,  
                'orderby'      => 'date',  
                'order'        => 'DESC',
                'post_type'    => 'post',
                'post_status'  => 'publish' ,
                'meta_query' => array(
                    array(
                        'key' => '_thumbnail_id',
                        'compare' => '!=',
                        'value' => null
                    )
                )
            );
于 2013-05-24T09:00:28.310 回答