ニュースリスト

    ‘-1’, //表示件数。-1なら全件表示
    ‘post_type’ => ‘news’, //カスタム投稿タイプの名称を入れる
    ‘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();
    ?>

  1. リンク