【Twenty Ten】フッターのアドレス位置など変更

WordPressテーマカスタマイズ

TwentyTenのフッターのままですと、「サイト名」が左にあり、「Proudly powered by WordPress」の文字が右に表示されています。

これを「サイト名」を真ん中に表示して、「Proudly powered by WordPress」の表示は削除します。

【変更前のフッター】

【変更後のフッター】

テーマ編集を開いて、footer.phpを編集します。
以下のコードが書かれている部分がありますのですべて削除します。

<div id=&quot;site-generator&quot;>
<?php do_action( 'twentyten_credits' ); ?>
<a href=&quot;<?php echo esc_url( __( 'http://wordpress.org/', 'twentyten' ) ); ?>&quot; title=&quot;<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>&quot; rel=&quot;generator&quot;><?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?></a>
</div><!-- #site-generator -->

次にサイト名の位置をstyle.cssを編集して変更します。/* =Structureにある#site-infoの内容を以下のように変えます。
【変更前:style.css】

			
#site-info {
  float: left;
  font-size: 14px;
  font-weight: bold;
  width: 700px;
}

【変更後:style.css】

#site-info {
  float: left;
  font-size: 14px;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
スポンサーリンク

コメント

タイトルとURLをコピーしました