Lightningのフッターをカスタマイズ

フッター

Powered by を非表示

CSSで消す

以下のいずれか

.site-footer-copyright p:nth-child(2) {
    display:none;
}
.copySection p:nth-child(2) {
	display:none;
}

function.php に追記して消す

add_filter('lightning_footerPoweredCustom', function(){ return; });

フッターの背景色

2023年1月確認

.section.siteFooter{
	background:#000000;
	color:#ffffff;
}

2022年7月 確認

.site-footer {
	background:#000;
	color:#ffffff;
}

フッター文字色

.widget_nav_menu ul li a {
	color:#fff;
}