bestsource

WordPress의 첫 번째 게시물을 건너뛸 수 있는 방법은 무엇입니까?

bestsource 2023. 2. 9. 22:01
반응형

WordPress의 첫 번째 게시물을 건너뛸 수 있는 방법은 무엇입니까?

WordPress의 첫 번째 게시물을 건너뛸 수 있는 방법은 무엇입니까?

<?php
$recentPosts = new WP_Query();
$recentPosts->query(array('showposts' => 6,'post_type' =>array('stiri')));
?>
<?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>

다음 파라미터를 사용합니다.

<?php
$recentPosts = new WP_Query( 'offset=1' ) );
$recentPosts->query(array('showposts' => 6,'post_type' =>array('stiri')));
?>
<?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>

오프셋 사용

$recentPosts = new WP_Query (
   array(
     'post_type'      => 'stiri',
     'post_status'    => 'publish',
     'posts_per_page' => 6, // all = -1
     'orderby'        => 'date',
     'order'          => 'DESC',
     'offset'         => 1
   )
);

언급URL : https://stackoverflow.com/questions/11697427/how-can-i-skip-the-first-post-in-wordpress

반응형