WP_Query和通知:未定义的偏移量:1

时间:2017-10-08 23:26:22

标签: php wordpress

我正在编写一个使用WP_Query循环的wordpress函数,一切正常,但我也注意到了一个错误,我想删除这个错误。这是我的代码......

<?php
        $args = array( 'post_type' => 'media_streams', 'posts_per_page' => -1 );
        $loop = new WP_Query( $args );
        while ( $loop->have_posts() ) : $loop->the_post();
        $can_view_content = wc_memberships_user_can( get_current_user_id(), 'view', array( 'post' => get_the_ID() ) );
        if ( $can_view_content ) :
        $count++;
        ?>

        <tr>
            <th style="text-align:center;"><?php the_post_thumbnail( array(300), array('style' => 'width:60px;') ); ?></th>
            <th><?php the_title(); ?></th>
            <th style="text-align:right; font-size:2em;"><a href="<?php echo get_permalink(); ?>"><i class="fa fa-youtube-play" aria-hidden="true"></i></a></th>
        </tr>

        <?php
        endif;
        endwhile;
        ?>

关于什么可能导致此通知的任何想法?

1 个答案:

答案 0 :(得分:0)

我想它是posts_per_page' => -1

每页

减去一个帖子...(?)