dqhnp44220 2016-11-16 23:33
浏览 66
已采纳

Wordpress多个wp_querys,wp_reset_postdata()不起作用

I'm trying to run two loops on a page. After the first loop runs, it completely stops the second loop. I looked into it and read up on wp_reset_postdata() and wp_reset_query(), neither of which have helped me so far.

My first loop looks like this:

<?php

$args = array(
    'post_type' => 'agents'                         
);

$posts = new WP_Query($args);

if( $posts->have_posts() ): while( $posts->have_posts() ) : $posts->the_post(); ?>

    <wordpress post here>

<?php

endwhile; 

wp_reset_postdata();

endif;

?>

A little ways down the page, we get the loop that isn't working due to the first loop:

$args = array(
    'post_type' => 'properties',
    'posts_per_page' => -1,
    'property_types' => $page,
    'property_cities' => $urlCity,
    'meta_key' => 'select-agent-value',
    'meta_value' => $agentId,
    's' => $urlAddress                              
);

$posts = new WP_Query($args);

if( $posts->have_posts() ): while( $posts->have_posts() ) : $posts->the_post();

    <wordpress post here>

endwhile; 

wp_reset_postdata();

endif; 

The arguments in the second loop are from this code that runs a little before it:

$page = $_GET['property-type'];
$urlCity = $_GET['city'];
$urlAddress = $_GET['address'];
$agentId = $_GET['agentId'];

if ($page == 'all') {
    $page = '';
}                           

if ($urlCity == 'all') {
    $urlCity = '';
}

if ($agentId == 'all') {
    $agentId = '';
}

I get the feeling it could something simple I'm missing. Appreciate any help anyone can give!

  • 写回答

1条回答 默认 最新

  • doulong1987 2016-11-17 21:25
    关注

    Okay so I figured out the issue, it ultimately had nothing to do with resetting the query as I originally felt. What was happening was in the second loop, where I set 'property_types' => $page, that variable value was from a $_GET used earlier on the page. For whatever reason, the first loop was taking that variable and changing its value, which eventually effected the second loop. So I basically just redid the $_GET after the first loop, which made sure the right value was stored in the variable.

    Thanks for anyone who might have been looking over it and trying to figure out how to help. I was kinda blind sided by what the actual problem was which ultimately made it hard to help since I actually had no clue what was actually happening.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵