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

WordPressテーマ「Lightning」の「Powerd by ~」を削除する方法

Last updated at Posted at 2021-07-02

WordPressテーマ「Lightning」のフッター下部の「Powerd by ~」を削除するには、functions.phpに以下を追記すれば可能です。
※G2、G3共通です
※第3引数の999は、優先度を示しており省略していると「10」となりますが、そのままだと「Powerd by ~」が表示されてしまうので、10よりも大きい数値にして優先度を下げることで、後から実行してreturn falseすることで「Powerd by ~」を消しています。そのため、「11」でも「Powerd by ~」は削除されます。

functions.php
// Powerd by の削除
add_filter( 'lightning_footerPoweredCustom' , function(){ return; } , 999 );

以下のように記載しても同義です。

functions.php
// Powerd by の削除
add_filter( 'lightning_footerPoweredCustom' , '__return_false' , 999 );
1
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
1
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?