WordPress の Hestia テーマにおいて、フッターを書き換える場合はinc/template-tags.phpを書き換えるように指示があるがこれが見つからない。
どうも新しいバージョンのHestiaでは、これを書き換えるらしい。
class-hestia-footer.php (inc/views/main/class-hestia-footer.php)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
public function bottom_footer_content() { $hestia_general_credits = get_theme_mod( 'hestia_general_credits', sprintf( /* translators: %1$s is Theme Name, %2$s is WordPress */ esc_html__( '%1$s | Developed by %2$s', 'hestia' ), esc_html__( 'Hestia', 'hestia' ), /* translators: %1$s is URL, %2$s is WordPress */ sprintf( '<a href="%1$s" rel="nofollow">%2$s</a>', esc_url( __( 'https://themeisle.com', 'hestia' ) ), 'ThemeIsle' ) ) ); ・・・略・・・ } |
リンクも不要で、独自のコピーライトに書き換えたければこうすれば良い。
1 2 3 4 5 6 7 8 |
public function bottom_footer_content() { $hestia_general_credits = get_theme_mod( 'hestia_general_credits', esc_html( 'Copyrights © YOUR-NAME All Right Reserved') ); ・・・略・・・ } |