<?php get_header();?>
<?php
global $wp_query;
global $wpdb;
$meta_key = 'bio_fact_birth-place';
$meta_value = str_replace("+"," ",$wp_query->query_vars['q']);
$title = 'List of famous people born at '.$meta_value;
$loop = get_fact_popularity_loop($meta_key,$meta_value);
hm_get_template_part('parts/content-popularity',array('loop'=>$loop, 'title'=>$title));
?>
<?php get_footer();?>