我有非常嚴重的問題,在wordpress中顯示帖子。我只是想定期循環,例如在每頁5個員額限制,我想展示下一個和上一個鏈接(上一頁和下一頁)WordPress的顯示帖子和限制
<?php $latest = new WP_Query('showposts=2'); ?>
<?php while($latest->have_posts()) : $latest->the_post(); ?>
<article class="blogArticle">
<h2><?php the_title(); ?></h2>
<h3><?php the_category(' '); ?></h3>
<?php echo get_the_post_thumbnail(); ?>
<?php the_excerpt(); ?>
</article>
<?php endwhile; ?>
這是在計算器上好的形式展現到目前爲止你已經嘗試過什麼,但看看這裏的第一個例子:http://codex.wordpress.org/Function_Reference/query_posts – doublesharp 2013-04-07 19:26:08
從teplate文件我的代碼是< ?php $ latest = new WP_Query('showposts = 2'); ($ latest-> have_posts()):$ latest-> the_post();?> <? ?> <?php endwhile; ?> –
2013-04-07 19:32:29
<?php the_title(); ?>
<?php the_category(''); ?>
<?php echo get_the_post_thumbnail(); ?> <?php the_excerpt(); ?>如果你看文檔,正確的參數是'posts_per_page'或'numberposts' – doublesharp 2013-04-07 19:38:02