0

我在设置要在主页上显示的帖子数时遇到一些问题。当我将帖子数设置为在主题选项中显示时,它会恢复为 3。我想将帖子数从 3 更改为 5。

这是我的 home.php 上的代码块,我认为需要一些改进。

-->
            <?php $recent = new WP_Query("cat=".get_theme_mod('featured_top_left')."&showposts=".get_theme_mod('featured_top_left_num')); while($recent->have_posts()) : $recent->the_post();?>
            <?php if( get_post_meta($post->ID, "thumb", true) ): ?>
            <a href="<?php the_permalink() ?>" rel="bookmark"><img class="thumb" src="<?php bloginfo('template_directory'); ?>/tools/timthumb.php?src=<?php echo get_post_meta($post->ID, "thumb", $single = true); ?>&amp;h=<?php echo get_theme_mod('featured_top_left_thumb_height'); ?>&amp;w=<?php echo get_theme_mod('featured_top_left_thumb_width'); ?>&amp;zc=1" alt="<?php the_title(); ?>" /></a>    
            <?php else: ?>
            <?php endif; ?> 
4

1 回答 1

1

根据Wordpress 手册

showposts (int) - 每页显示的帖子数。自 2.1 版起已弃用,支持“posts_per_page”。

因此,如果您的版本是 >2.1,您应该编辑代码并showposts替换posts_per_pageWP_Query.

        <?php $recent = new WP_Query("cat=".get_theme_mod('featured_top_left')."&posts_per_page=".get_theme_mod('featured_top_left_num'));

更新代码。

于 2012-10-17T16:52:26.540 回答