2004-08-20 19:14:27 +02:00
|
|
|
<?php
|
|
|
|
// If a footer.php file exists in the WP root directory we
|
|
|
|
// use that, otherwise use this default wp-footer.php file.
|
2004-12-08 22:51:25 +01:00
|
|
|
if ( file_exists(TEMPLATEPATH . '/footer.php') ) :
|
|
|
|
include_once(TEMPLATEPATH . '/footer.php');
|
2004-08-20 19:14:27 +02:00
|
|
|
else :
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-09-08 11:53:20 +02:00
|
|
|
<?php
|
|
|
|
// This code pulls in the sidebar:
|
|
|
|
include(ABSPATH . '/wp-sidebar.php');
|
|
|
|
?>
|
2004-08-20 19:14:27 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p class="credit"><!--<?php echo $wpdb->num_queries; ?> queries. <?php timer_stop(1); ?> seconds. --> <cite><?php echo sprintf(__("Powered by <a href='http://wordpress.org' title='%s'><strong>WordPress</strong></a>"), __("Powered by WordPress, state-of-the-art semantic personal publishing platform.")); ?></cite></p>
|
2004-09-08 11:15:18 +02:00
|
|
|
|
2004-09-08 11:53:20 +02:00
|
|
|
<?php do_action('wp_footer', ''); ?>
|
2004-08-20 19:14:27 +02:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
<?php endif; ?>
|