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' );