在我的WordPress索引中。html我正在使用
<?php query_posts(\'posts_per_page=3\') ?>
<?php while(have_posts()) : the_post(); ?>
//rest of the post related data
<?php endwhile; wp_reset_query(); ?>
<?php do_action(\'show_navigation\');
之后,我想获取接下来的3篇或之前的3篇帖子,为此我正在努力
if ( ! function_exists( \'theme_content_navigation\' ) ) {
function theme_content_navigation( ) {
global $wp_query;
if ( $wp_query->max_num_pages > 1 ) { ?>
<nav class="navigation" role="navigation">
<div class="nav-previous"><?php next_posts_link( \'<\' ); ?></div>
<div class="nav-next"><?php previous_posts_link( \'>\' ); ?></div>
</nav>
<?php
}
}
}
add_action(\'show_navigation\', \'theme_content_navigation\');
此代码位于函数中。php。
现在我有4篇帖子,其中三篇正在我的索引中显示。php,但我无法看到获取下一篇帖子并替换索引中现有帖子的导航链接。php。请建议我如何获取下一个或以前的帖子。