0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

WordPressテーマ「Lightning」の「Copyright ~」をカスタマイズする方法

Posted at

WordPressテーマ「Lightning」のフッター下部の「Copyright ~」をのカスタマイズをするには、functions.phpに以下のように追記すれば可能です。
※G2、G3共通です

functions.php
// Copyrightのカスタマイズ
function my_lightning_footerCopyRightCustom($content) {
  return $content = '<p> &copy; ' . Date('Y') . ' 株式会社サンプル</p>';
}
add_filter('lightning_footerCopyRightCustom', 'my_lightning_footerCopyRightCustom', 10, 1);

上記の場合、「 © 2021 株式会社サンプル 」のように表示されます。※年数は動的に変わります。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?