mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 02:10:45 +01:00
e227cb587f
git-svn-id: http://svn.automattic.com/wordpress/trunk@1626 1a063a9b-81f0-0310-95a4-ce76da25c4cd
24 lines
709 B
PHP
24 lines
709 B
PHP
<?php
|
|
// If a footer.php file exists in the WP root directory we
|
|
// use that, otherwise use this default wp-footer.php file.
|
|
if ( file_exists(ABSPATH . '/footer.php') ) :
|
|
include_once(ABSPATH . '/footer.php');
|
|
else :
|
|
?>
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
// This code pulls in the sidebar:
|
|
include(ABSPATH . '/wp-sidebar.php');
|
|
?>
|
|
|
|
</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>
|
|
|
|
<?php do_action('wp_footer', ''); ?>
|
|
</body>
|
|
</html>
|
|
<?php endif; ?>
|