Lightning 無料版 copyrightを消す方法
Lightning 無料版 copyrightを消す方法です。
正確には非表示にしているだけです。
.site-footer-copyright > p + p {
display: none;
}フッター部分のコードは下記のようになっていますので、外側の要素であるDIVタグを指定し、子要素であるPタグの次のPタグを非表示にする、という書き方です。
<div class="container site-footer-copyright">
<p>Copyright © 商会 All Rights Reserved.</p>
<p>Powered by <a href="https://wordpress.org/">WordPress</a> with <a href="https://wordpress.org/themes/lightning/" target="_blank" title="Free WordPress Theme Lightning">Lightning Theme</a> & <a href="https://wordpress.org/plugins/vk-all-in-one-expansion-unit/" target="_blank">VK All in One Expansion Unit</a></p> </div>
</footer>
