Lightning(バージョン: 6.16.0)のコピーライトを削除する方法
記事の方法でカスタムを100%保障するものではございません。
悪しからずご了承下さいませ。
コピーライトカスタマイザーで消す・PHPファイルから消す・CSSで非表示にする。
※カスタマイズは必ずバックアップの上、自己責任にて行って下さい。
著作権表示の削除
テーマのコピーライト表記を削除する。
Powered by WordPress with Lightning Theme & VK All in One Expansion Unit by Vektor,Inc. technology.
CSSで消す方法
footer .copySection p:nth-child(2) {
display:none !important;
}
PHPを変更して消す方法
変更ファイル
wp-content/themes/lightning/inc/template-tags.php
wp-content/themes/lightning/inc/template-tags.php
347行目 著作権表示部分なので表示されないように */ の位置を移動して非表示にします。
$lightning_footerPowered = __( '<p>Powered by <a href="https://wordpress.org/">WordPress</a> & <a href="https://lightning.nagoya" target="_blank" title="Free WordPress Theme Lightning"> Lightning Theme</a> by Vektor,Inc. technology.</p>', 'lightning' );
echo apply_filters( 'lightning_footerPoweredCustom', $lightning_footerPowered );
}