发新话题
打印

[问题求助] 把Copyright 放中间怎么放?

把Copyright 放中间怎么放?

<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>

把有颜色那部分代码 显示的时候要显示在底部中间位置,怎么改呢?谢谢

TOP

代码应该就是至中的 如果没有

<center>  <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></center>   在p标签外(里面也可以的)添加Center标签

TOP

非常谢谢呵呵!

TOP

我也来学习下的.....魔力宝贝私服  真封神私服   魔界私服  机战私服  魔力私服
感谢楼上的分享.....

TOP

回复 2# 的帖子

不错

TOP

发新话题