<div id="footer">
</div>
</div><!-- #contents end -->
<div id="footer_cont">
<div class="foot_left">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer left') ) : ?>
<?php endif; ?>
</div>
<div class="foot_right">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer right') ) : ?>
<?php endif; ?>
</div>
<p class="copy">
<?php
global $wpdb;
$post_datetimes = $wpdb->get_row($wpdb->prepare("SELECT YEAR(min(post_date_gmt)) AS firstyear, YEAR(max(post_date_gmt)) AS lastyear FROM $wpdb->posts WHERE post_date_gmt > 1970"));
if ($post_datetimes) {
$firstpost_year = $post_datetimes->firstyear;
$lastpost_year = $post_datetimes->lastyear;
$copyright = 'Copyright © ' . $firstpost_year;
if($firstpost_year != $lastpost_year) {
$copyright .= '-'. $lastpost_year;
}
$copyright .= ' ';
echo $copyright;
}
?>
<a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a> </p>
<p class="copy"><a href="http://thriveweb.com.au/"> WordPress theme by thrive</a> <img src="http://thriveweb.com.au/wp-content/themes/thiveweb/favicon-grey.png" width="16" height="16" alt="thrive web design" title="thrive web design" /></p>
<div class="clear"></div>
</div>
</div><!-- #wrapper end -->
<?php wp_footer(); ?>
</body>
</html>