Wordpress菜单显示最多5项

时间:2014-05-20 09:56:41

标签: php wordpress wordpress-theming

我在Wordpress中制作了一个自定义菜单,但它只显示了最多5个项目,但在这种情况下,有8个项目要显示。

我该如何解决这个问题?

enter image description here

                    <?php $terms = get_terms($taxonomyName, array('parent' => $pterm->term_id, 'orderby' => 'slug',  'posts_per_page'=>-1,  'hide_empty' => false));
                    foreach ($terms as $term) { ?>
                   <li><a href="<?php echo get_term_link( $term->name, $taxonomyName ); ?>"><?php echo  $term->name ; ?></a>
                   <div class="post">

                   <ul class="childpost">
                   <?php $wpq = array ('taxonomy'=>'type','term'=>$term->slug);
                         $myquery = new WP_Query ($wpq); ?>

                        <?php while ($myquery->have_posts()) : $myquery->the_post(); ?>

                        <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> 
                    <div class="image"><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('product'); ?></a></div></li>
                        <?php endwhile;  ?>

1 个答案:

答案 0 :(得分:0)

检入WordPress管理员下的设置。你最有可能将'max blog posts to show'设置为5.将此增加到你喜欢的数量。