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 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签天线)
  • ¥15 机器人轨迹规划相关问题
  • ¥15 word样式右侧翻页键消失