File: /www/wwwroot/biographybirthday.com/wp-content/themes/bio/page-birthday.php
<?php get_header();?>
<?php
global $wp_query;
global $wpdb;
$meta_key = 'bio_dob';
$meta_value = $wp_query->query_vars['q'];
$dates = explode('-',$meta_value);
$title = 'List of famous people with birthday on '.ordinal($dates[1]).' '.date("F", mktime(0, 0, 0, $dates[0], 10));
$loop = get_fact_popularity_loop($meta_key, $meta_value);
hm_get_template_part('parts/content-popularity',array('loop'=>$loop, 'title'=>$title));
?>
<?php get_footer();?>