gpt4 book ai didi

mysql - 按接近纬度和经度对 WordPress 帖子进行排序

转载 作者:行者123 更新时间:2023-11-29 02:27:01 25 4
gpt4 key购买 nike

我在 WordPress 中有很多帖子。这些帖子属于“餐厅”类别。每个帖子都有一个自定义的元键/值,如下所示:

$post_geocode = get_post_meta($post->ID, 'geocode', true);
// $post_geocode = '34.0510613,-118.244705'

您必须登录 WordPress 才能使用我的网站,因此每个用户都为他们存储了一个地理编码,如下所示:

$user_geocode = get_user_meta( $user->ID, 'geocode', true );
// $user_geocode = '34.043925,-118.2424291'

所以我希望能够获取帖子并根据它们与用户位置的接近程度对它们进行排名。

理想情况下,它会使用 WP 查询类。但是我很乐意根据需要更改地理编码的存储方式。

最佳答案应该是这样的:

// This is how I manage the type of restaurant you'll see (eg: Mexican, Italian etc)
$cat_query = array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => $restaurant_category,
'operator' => 'IN'
);

// Go and get the posts
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => -20,
'geocode' => $user_geocode, // WOuld love this to work!!!
'orderby' => 'geocode', // Would love this to work!!!
'fields' => 'ids',
'tax_query' => array(
'relation' => 'AND',
$cat_query,
)
);

$posts = get_posts($args);

最佳答案

如果您将帖子数据保存在数据库中(将您的坐标分成纬度和经度两个字段),您可以使用余弦定律的大地测量形式来计算点之间的距离。 Reference

cos(d/R)=cos(lat1)cos(lat2)cos(long2-long1)+sin(lat1)sin(lat2)

其中 R = 地球半径(6367 公里,3959 英里)

以下 SQL 查询将提供以公里为单位的距离,其中 $center_lat&$center_lng 是用户位置。

$postids=$wpdb->get_col( $wpdb->prepare("SELECT  name, lat, lng, 
( 6367 * acos( cos( radians(%f) ) * cos( radians( lat ) ) * cos( radians( lng ) - radians(%f) ) + sin( radians(%f) ) * sin( radians( lat ) ) ) ) AS distance FROM mytable HAVING distance < %d ORDER BY distance LIMIT 0 , 5",
$center_lat,$center_lng,$center_lat,$radius));
if ( $postids )
{
foreach ( $postids as $id )
{
echo $id->name;
echo $id->distance;
//etc
}
}

查询是基于我用过的代码here但修改了找到的信息here .我无权访问 WordPress 进行检查。

关于mysql - 按接近纬度和经度对 WordPress 帖子进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19756857/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com