【WordPress】テーマフッターを変更する【MH Magazine lite】

目次

概要

テーマフッターの
・著作権表示(コピーライト)
をカスタマイズする。

手順

・ [ダッシュボード]→[外観]→[テーマの編集]を選択
・ テーマファイルから[footer.php]を選択
・以下の部分を編集する

表示する文言の変更

テーマのデフォルト表示フッターを以下の文言に変更する。

Copyright [c] [西暦] [サイト名] All Rights Reserved.

リンク先の変更

フッターのサイト名をクリックしたときのリンク先を変更する。

esc_url(‘https://www.mhthemes.com/’)
の箇所を
home_url()
に変更することで、テーマの配布元ページへのリンクをサイトのトップページへのリンクに変更する。

<p class="mh-copyright"><?php printf(esc_html__('Copyright &copy; %1$s %2$s All Rights Reserved.'), date("Y"), '<a href="' . home_url() . '" rel="nofollow">IMASARA.ONLINE</a>'); ?></p>

ソースコード

<?php mh_before_footer(); ?>
<?php mh_magazine_lite_footer_widgets(); ?>
<div class="mh-copyright-wrap">
<div class="mh-container mh-container-inner mh-clearfix">
<p class="mh-copyright"><?php printf(esc_html__('Copyright &copy; %1$s | WordPress Theme by %2$s', 'mh-magazine-lite'), date("Y"), '<a href="' . esc_url('https://www.mhthemes.com/') . '" rel="nofollow">MH Themes</a>'); ?></p>
</div>
</div>
<?php mh_after_footer(); ?>
<?php wp_footer(); ?>
</body>
</html>
<?php mh_before_footer(); ?>
<?php mh_magazine_lite_footer_widgets(); ?>
<div class="mh-copyright-wrap">
<div class="mh-container mh-container-inner mh-clearfix">
<p class="mh-copyright"><?php printf(esc_html__('Copyright &copy; %1$s %2$s All Rights Reserved.'), date("Y"), '<a href="' . home_url() . '" rel="nofollow">IMASARA.ONLINE</a>'); ?></p>
</div>
</div>
<?php mh_after_footer(); ?>
<?php wp_footer(); ?>
</body>
</html>