我在Wordpress中制作了一个自定义菜单,但它只显示了最多5个项目,但在这种情况下,有8个项目要显示。
我该如何解决这个问题?
<?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; ?>
答案 0 :(得分:0)
检入WordPress管理员下的设置。你最有可能将'max blog posts to show'设置为5.将此增加到你喜欢的数量。