LoginSignup
1
0

More than 1 year has passed since last update.

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

Last updated at Posted at 2021-07-02

WordPressテーマ「Lightning」のフッター下部の「Powerd by ~」を削除するには、functions.phpに以下を追記すれば可能です。
※G2、G3共通です

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

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

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