function set_pagination($total_num_of_records_we_are_going_to_fetch, $num_of_results_per_page = 50)
{
    # $pagination() array is necessary for ( Pagination Bar )
    $pagination['current_page_name'] = get_current_page_name();
    # get_current_page_name() is a user-defined function
    $pagination['first_page'] = 1;
    $pagination['current_page'] = empty($_GET['page']) ? 1 : $_GET['page'];
    # If current page is empty (have no value) then make it equals to 1
    $pagination['next_page'] = $pagination['current_page'] + 1;
    $pagination['previous_page'] = $pagination['current_page'] - 1;
    $pagination['num_of_results_per_page'] = $num_of_results_per_page;
    $pagination['start_record'] = ($pagination['current_page'] - 1) * $pagination['num_of_results_per_page'];
    # Determine last page number
    $pagination['last_page'] = ceil($total_num_of_records_we_are_going_to_fetch / $pagination['num_of_results_per_page']);
    # If there was no result then make the last page equals to 1
    if ($pagination['last_page'] == 0) {
        $pagination['last_page'] = 1;
    }
    return $pagination;
}
        echo '<link href="css/pages/resume.css" rel="stylesheet" type="text/css">';
        break;
    case 'blog.php':
        echo '<link href="css/pages/blog.css" rel="stylesheet" type="text/css">';
        break;
    case 'contact.php':
        echo '<link href="css/pages/contact.css" rel="stylesheet" type="text/css">';
        break;
}
?>
</head>
<body>
    <div class="construction-banner">Currently under construction</div>
    <nav
    <?php 
switch (get_current_page_name()) {
    case 'about.php':
        echo ' class="about-navbar" ';
        break;
    case 'portfolio.php':
        echo ' class="portfolio-navbar" ';
        break;
    case 'resume.php':
        echo ' class="resume-navbar" ';
        break;
    case 'blog.php':
        echo ' class="blog-navbar" ';
        break;
    case 'contact.php':
        echo ' class="contact-navbar" ';
        break;
/img/mediumtile.png" />
        <meta name="msapplication-wide310x150logo" content="<?php 
echo get_template_url();
?>
/img/widetile.png" />
        <meta name="msapplication-square310x310logo" content="<?php 
echo get_template_url();
?>
/img/largetile.png" />

        <?php 
tha_head_bottom();
?>
		<?php 
wp_head();
get_current_page_name(get_the_title());
?>
        <link type="text/css" rel="stylesheet" href="<?php 
echo get_template_url();
?>
/css/production.min.css">
    </head>

    <body <?php 
if (is_page("philanthropist")) {
    body_class("philanthropistPage");
}
if (is_page("news") || is_page("search") ? body_class("bodyTopPadding") : body_class()) {
}
?>
 >
    <?php 
tha_footer_after();
?>
<!--	 --><?php 
//printf( __( '%d queries. %s seconds.', 'the-bootstrap' ), get_num_queries(), timer_stop(0, 3) );
?>
<!-- -->
	<?php 
wp_footer();
?>
<script type="text/javascript" src="<?php 
echo get_template_url();
?>
/js/production.min.js"></script>
<?php 
if (get_current_page_name() == "Player" || get_current_page_name() == "Philanthropist") {
    ?>
<script type="text/javascript" src="<?php 
    echo get_template_url();
    ?>
/js/player.js"></script><?php 
}
?>
</body>
</html>
<script>
    (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
        (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
    })(window,document,'script','//www.google-analytics.com/analytics.js','ga');