使用NEXT_POSTS_LINK和PREVICE_POSTS_LINK的多个循环

时间:2016-05-08 作者:Unpalis

我在同一个页面中有多个循环,它们工作得很好,但当我尝试使用next_posts_link &;previous_posts_link 对于特定div.

示例:

<div id="example1"><div id="next1"><?php next_posts_link(\'<img src="\'.get_template_directory_uri().\'/images/next.jpg" />\'); ?></div>
<div id="previous1"><?php previous_posts_link(\'<img src="\'.get_template_directory_uri().\'/images/previous.jpg" />\'); ?></div></div>
当我单击“下一步”或“上一步”以获取特定div, 为什么所有其他div都包含next_posts_link &;previous_posts_link 是否也获得更新?

1 个回复
SO网友:Nomi

你试过了吗wp_reset_query(); 每次循环之后?

请为您的模板提供完整的代码,然后我们可能会提供帮助。

相关推荐

当in_the_loop()为假时,何时以及为什么is_Single(‘my_cpt’)为真?

我正在使用模板系统的示例代码。此地址的页码:http://project.test/my_cpt/hello-post/.无法理解原因is_singular( \'my_cpt\' ) 是true 虽然in_the_loop() 是false.在页面模板中The Loop "E;“工程”:if ( have_posts() ) { while ( have_posts() ) { the_post(); ?>