Extracting Distance from FacetWP Proximity Function to Display in Wordpress Template

让人想犯罪 __ 提交于 2019-12-06 14:32:40

I received and answer to my question from Matt@wordpress.stackexchange. There is actually a FacetWP hook to add distance to page templates. A functions filter:

add_filter( 'facetwp_proximity_store_distance', '__return_true' );

and a bit of php to enable the functionality:

$distance = facetwp_get_distance();
if ( false !== $distance ) {
echo round( $distance, 1 );
echo " miles";
}

I hope this helps somebody, thanks again Matt

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!