私はWordpressとPhpのコーディング全般にまったく慣れていません。緯度と経度を保存するカスタム投稿タイプを含む比較的単純なテーマを使用しています。各投稿は、ディレクトリ内のホテルのリストです。私が使用しているテーマは、WordPress のファセット プラグインである FacetWP とも統合されています。ユーザーは、自分の居場所を入力してサイトを検索できます。これは、Google のマッピング機能を使用して行われます。検索が送信されると、パラメーターがアーカイブ ページに渡されます。
これをデコードすると、次のようになります。
43.653226,-79.38318429999998,10,トロント%2C%20ON%2C%20カナダ
そのため、フォームはアーカイブを中心の緯度と経度、および半径 (10 マイル) で通過します。
次に、アーカイブはこの情報を使用して投稿タイプのリストをクエリし、近くの場所を返します。
私が本当にやりたいことは、アーカイブ/投稿の概要ページの中心から各投稿までの距離を表示することです。
テーマには距離による並べ替えオプションがあるため、これは可能です。計算された値を取得してページ本文にエコーする方法がわかりません。近接関数のphpは次のとおりです。
<?php
if ( class_exists( 'FacetWP_Facet_Proximity' ) ) {
return;
}
class FacetWP_Facet_Proximity
{
/**
* The ordered array of post IDs
*/
public $ordered_posts = array();
/**
* An array containing each post ID and its distance
*/
public $distance = array();
function __construct() {
$this->label = __( 'Proximity', 'fwp' );
add_filter( 'facetwp_index_row', array( $this, 'index_latlng' ), 10, 2 );
add_filter( 'facetwp_sort_options', array( $this, 'sort_options' ), 1, 2 );
add_filter( 'facetwp_filtered_post_ids', array( $this, 'sort_by_distance' ), 10, 2 );
}
/**
* Generate the facet HTML
*/
function render( $params ) {
$output = '';
$facet = $params['facet'];
$value = $params['selected_values'];
$unit = empty( $facet['unit'] ) ? 'mi' : $facet['unit'];
$lat = empty( $value[0] ) ? '' : $value[0];
$lng = empty( $value[1] ) ? '' : $value[1];
$chosen_radius = empty( $value[2] ) ? '' : $value[2];
$location_name = empty( $value[3] ) ? '' : urldecode( $value[3] );
$radius_options = apply_filters( 'facetwp_proximity_radius_options', array( 10, 25, 50, 100, 250 ) );
ob_start(); ?>
<input type="text" id="facetwp-location" value="<?php echo $location_name; ?>" placeholder="<?php _e( 'Enter location', 'fwp' ); ?>" />
<select id="facetwp-radius">
<?php foreach ( $radius_options as $radius ) : ?>
<?php $selected = ( $chosen_radius == $radius ) ? ' selected' : ''; ?>
<option value="<?php echo $radius; ?>"<?php echo $selected; ?>><?php echo "$radius $unit"; ?></option>
<?php endforeach; ?>
</select>
<div style="display:none">
<input type="text" class="facetwp-lat" value="<?php echo $lat; ?>" />
<input type="text" class="facetwp-lng" value="<?php echo $lng; ?>" />
</div>
<?php
return ob_get_clean();
}
/**
* Filter the query based on selected values
*/
function filter_posts( $params ) {
global $wpdb;
$facet = $params['facet'];
$selected_values = $params['selected_values'];
$unit = empty( $facet['unit'] ) ? 'mi' : $facet['unit'];
$earth_radius = ( 'mi' == $unit ) ? 3959 : 6371;
if ( empty( $selected_values ) || empty( $selected_values[0] ) ) {
return 'continue';
}
$lat = (float) $selected_values[0];
$lng = (float) $selected_values[1];
$radius = (int) $selected_values[2];
$sql = "
SELECT DISTINCT post_id,
( $earth_radius * acos( cos( radians( $lat ) ) * cos( radians( facet_value ) ) * cos( radians( facet_display_value ) - radians( $lng ) ) + sin( radians( $lat ) ) * sin( radians( facet_value ) ) ) ) AS distance
FROM {$wpdb->prefix}facetwp_index
WHERE facet_name = '{$facet['name']}'
HAVING distance < $radius
ORDER BY distance";
$this->ordered_posts = array();
$this->distance = array();
if ( apply_filters( 'facetwp_proximity_store_distance', false ) ) {
$results = $wpdb->get_results( $sql );
foreach ( $results as $row ) {
$this->ordered_posts[] = $row->post_id;
$this->distance[ $row->post_id ] = $row->distance;
}
}
else {
$this->ordered_posts = $wpdb->get_col( $sql );
}
return $this->ordered_posts;
}
wpquery を読んで実験してみましたが、距離は保存された値ではなく、計算であるため、進むべき道ではないようです。