前記事の続きみたいなものですが、
子テーマ用の画像を用意した場合には、「images」フォルダなどを子テーマ用フォルダの中に追加し、そこに画像を保存すると思います。
しかし、echo get_template_directory_uri()や、bloginfo(‘template_url’)や、bloginfo( ‘template_directory’ )といった方法でパスを指定すると、親テーマのディレクトリが指定されてしまいます。
そこで、
<img src="<?php bloginfo('stylesheet_directory') ?>/images/○○.png" />
と、画像パスの指定もstylesheet_directoryを基準にする必要があります。