<?php
$wp_query = new WP_Query();
$param = array(
'offset' => '3', //オフセット
'posts_per_page' => '-1', //表示件数。-1なら全件表示
'post_type' => 'feature', //カスタム投稿タイプの名称を入れる
'post_status' => 'publish', //取得するステータス。publishなら一般公開のもののみ
'orderby' => 'ID', //ID順に並び替え
'order' => 'DESC'
);
$wp_query->query($param);
if($wp_query->have_posts()): while($wp_query->have_posts()) : $wp_query->the_post();
?>
…
…
<?php endwhile; endif; ?>
$paramの中に入れてみましたが、変わらないようです…
gblsm様 返信ありがとうございます。
<?php
$wp_query = new WP_Query( 'offset=3' );
$param = array(
'posts_per_page' => '-1', //表示件数。-1なら全件表示
'post_type' => 'feature', //カスタム投稿タイプの名称を入れる
'post_status' => 'publish', //取得するステータス。publishなら一般公開のもののみ
'orderby' => 'ID', //ID順に並び替え
'order' => 'DESC'
);
$wp_query->query($param);
if($wp_query->have_posts()): while($wp_query->have_posts()) : $wp_query->the_post();
?>
…
…
<?php endwhile; endif; ?>
offsetを入れてみましたが、投稿とびませんでした…
入れるところ間違えてますでしょうか?