@yugoyoshida さん
こんにちは。
フッターのコピーライトの変更については、テーマフォルダの readme.txt
に記載されていました。
https://themes.trac.wordpress.org/browser/onepress/2.2.8/readme.txt#L31
= How to change the copyright message in the footer? =
Because it’s free theme, the theme designer copyright is needed, or you can change it by copy footer.php from parent theme to your child theme folder and start edit it. ( So if won’t get replace in future theme update. )
日本語訳は以下です。
フッターに表示されるコピーライトメッセージを変更するには?
無料テーマのためテーマデザイナーの著作権が必要ですが、親テーマの footer.php を子テーマのフォルダにコピーして編集することで変更できます。(そうすれば、今後のテーマアップデートで差し替えられることはありません。)
上記のように、子テーマを作って footer.php
を上書きすればよいと思います。
もしくは、用意されているアクションフックで書き換える事も出来ます。
function custom_onepress_footer_site_info() {
echo 'ここにコピーライトが入ります';
}
add_action( 'onepress_footer_site_info', 'custom_onepress_footer_site_info' );