Wordpress对WP_Query返回的帖子进行排序

时间:2016-04-02 05:51:10

标签: php wordpress sorting

我正在对帖子进行远距离排序。场景是这样的:用户输入一些城市名称,我得到城市的坐标。每个帖子也有一些坐标作为postmeta。我需要找到这两个点之间的距离并对帖子进行排序,例如最低距离的帖子将首先显示。

我尝试使用以下代码来计算距离,该工作正常。我的问题是将这个距离附加到帖子上。我尝试将属性添加到post对象。但那么如何排序这些帖子?

我需要带有排序帖子的WP_Query对象。

$ prop_selection = new WP_Query($ args);

while ($prop_selection->have_posts()): $prop_selection->the_post(); 

    $property_lat = get_post_meta($post->ID,'property_latitude',true);
    $property_lng = get_post_meta($post->ID,'property_longitude',true);

    $distancefromcity=distance($property_lat,$property_lng,$city_lat,$city_lng,"K");
    $distancefromcity=round($distancefromcity,2);

    $post = (array)$post;
    $post['distance'] = $distancefromcity;
    $post = (object)$post;

endwhile;

2 个答案:

答案 0 :(得分:2)

  1. $distancefromcity添加到帖子meta-data

  2. 制作自定义选择查询并按距离排序。看到 http://codex.wordpress.org/Displaying_Posts_Using_a_Custom_Select_Query

答案 1 :(得分:1)

我是按照以下方式做到的。 这是好还是有更好的方法吗?

    while ($prop_selection->have_posts()): $prop_selection->the_post(); 

        $property_lat = 0;
        $property_lng = 0;

        $property_lat = get_post_meta($post->ID,'property_latitude',true);
        $property_lng = get_post_meta($post->ID,'property_longitude',true);

        $distancefromcity=distance($property_lat,$property_lng,$city_lat,$city_lng,"K");
        $distancefromcity=round($distancefromcity,2);
        $distance_array[]= array( 'ID' => $post->ID,
                                'distance' => $distancefromcity);

    endwhile;


    usort($distance_array, function ($item1, $item2) {
        if ($item1['distance'] == $item2['distance']) return 0;
        return $item1['distance'] < $item2['distance'] ? -1 : 1;
    });


    $sorted_posts = array();

    foreach($distance_array as $key)
    {
        $sorted_posts[]=$key['ID'];
    }


    $args = array(
        'cache_results'           =>    false,
        'update_post_meta_cache'  =>    false,
        'update_post_term_cache'  =>    false,
        'post_type'               =>    'estate_property',
        'post_status'             =>    'publish',
        'paged'                   =>    $paged,
        'posts_per_page'          =>    $prop_no,
        'post__in'                =>    $sorted_posts,
        'orderby'                 =>    'post__in'
    );

    $prop_selection =   new WP_Query($args);