掲題のテーマでは、編集画面からFooter部分の記述内容にアクセス出来ません。そこでソースを編集しました。目的の内容にほぼ変更出来たので記録しました。
Really Simpleのfooter.phpをコピーしてきます
# cd really-simple
# cp footer.php ../really-child
nano footer.php
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Really Simple
*/
?>
<footer class=”footer”>
<div class=”container”>
<small class=”footer__copy”>
© 2013 – <?php echo date( ‘Y’ ); ?> <?php bloginfo( ‘name’ ); ?>
All Right Reserved.
</small>
<section class=”footer__info”>
</section>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>
CTRL+Q 上書き保存
CTRL+X nanoを終了
フッター表示の内容
表示結果を下記に表示します
© 2013 – 2026 IT tubyaku All Right Reserved.
以上、Really Simpleの子テーマでフッターのカスタマイズ方法の一例でした。

