如何排除帖子和滑块

时间:2017-02-27 05:25:21

标签: wordpress

我想加载第6个及以后的帖子。以及如何在2页中排除滑块

我的主题代码final value

home.php

1 个答案:

答案 0 :(得分:0)

您可以在查询中使用偏移量。

    <ul>
    <?php
    global $post;
    $args = array( 'numberposts' => 10, 'offset'=> 6,  );
    $myposts = get_posts( $args );
    foreach( $myposts as $post ) :  setup_postdata($post); ?>
        <li>
            Your code here...
        </li>
    <?php endforeach; wp_reset_postdata(); ?>
    </ul>

试试你的代码。