<div class="anchor">
<span><a href="javascript:void(0);" ><?php _e('TOP', 'elegantbox'); ?></a></span>
</div>
<div class="clear"></div>
</div>
<div class="clear"></div>
</div>
<!-- footer START -->
<div id="footer">
<div class="inner">
<div class="content">
<p id="about">
<?php
global $wpdb;
$post_datetimes = $wpdb->get_results("SELECT post_date_gmt FROM wp_posts WHERE post_date_gmt > 1949 ORDER BY post_date_gmt ASC");
$firstpost_year = substr($post_datetimes[0]->post_date_gmt, 0, 4);
$lastpost_year = substr($post_datetimes[count($post_datetimes)-1]->post_date_gmt, 0, 4);
$copyright = __('Copyright © ', 'elegantbox') . $firstpost_year;
if($firstpost_year != $lastpost_year) {
$copyright .= '-'. $lastpost_year;
}
echo ($copyright . ' '); bloginfo('name');
_e(' | Powered by <a href="http://wordpress.org/">WordPress</a>', 'elegantbox');
_e(' | Theme by <a href="http://www.fighton.cn/">mg12</a>', 'elegantbox');
?>
</p>
<ul id="admin">
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
</ul>
<div class="clear"></div>
</div>
</div>
</div>
<!-- footer END -->
</body>
</html>
把有颜色那部分代码 显示的时候要显示在底部中间位置,怎么改呢?谢谢