wp 一覧で件数を制御 

カスタム投稿タイプ毎に一覧表示件数を変える方法

管理画面で1件表示に

                <ul>
	            <?php $paged = get_query_var( 'paged' ); ?>
	            <?php query_posts($query_string .'&posts_per_page=2&paged='.$paged); ?>
				<?php while ( have_posts() ) : the_post(); ?>
                    <li><a href="<?php the_permalink(); ?>">
	                    
                        <img src="<?php if( $image = get_field('画像')): ?><?php echo $image['url']; ?><?php endif; ?>" alt="<?php the_title(); ?>">
                        <h2 class="archive_list_title"><?php the_title(); ?></h2>
                        
                        <table class="case_details_name">
                            <tr>
                                <th>被加工材</th>
                                <td><?php the_field('被加工材'); ?></td>
                            </tr>
                            <tr>
                                <th>対象分野</th>
                                <td><?php $terms = get_the_terms($post->ID, 'case_typ'); foreach ($terms as $term) : ?>
<?php echo $term->name; ?>
<?php endforeach; ?></td>
                            </tr>
                            <tr>
                                <th>加工種類</th>
                                <td><?php the_field('加工種類'); ?></td>
                            </tr>
                        </table>
                        <p class="case_details_time">製造日:<time><?php the_time('Y年m月d日'); ?></time></p>
                    </a></li>
				<?php endwhile; ?>
                </ul>