我在 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 Query 类。但如果需要,我很乐意更改地理编码的存储方式。
最佳答案如下所示:
// 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);