プレスリリースの表示件数はどこで指定できるのでしょうか?
‘numberposts’ => 5の修正<!-- press release --> <div class="headline1"> <h2><?php echo $options['index_headline_news']; ?></h2> <?php if(!empty($options['older_news'])){ ?><div class="archive_btn"><a class="blendy" href="<?php echo get_post_type_archive_link('press'); ?>"><?php echo $options['older_news']; ?></a></div><?php }; ?> </div> <ul class="top_list clear"> <?php $args = array('post_type' => 'press', 'numberposts' => 5); $news_post=get_posts($args); if ($news_post) : foreach ($news_post as $post) : setup_postdata ($post); ?> <li><span><?php the_time('Y.n.j'); ?></span><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li> <?php endforeach; else: ?> <li><?php _e("There is no registered news.","tcd-w"); ?></li> <?php endif; ?> </ul> <!-- /press release -->
numberpostsの数字を変更する事で表示件数が変わります。
この記事は役に立ちましたか?
もし参考になりましたら、下のボタンで教えてください。
今後の記事作成の参考とさせて頂きます!