При создании и изменении файла functions.php выдает ошибку Warning: Cannot modify header
information - headers already sent by (output started at Z:\home\inter-pin.ru\www\wp-content\themes\child storefront\functions.php:1) in Z:\home\inter-pin.ru\www\wp-includes\pluggable.php on line 1179 Вот содержимое файла <?php add_action( 'init', 'custom_remove_footer_credit', 10 ); function custom_remove_footer_credit () { remove_action( 'storefront_footer', 'storefront_credit', 20 ); add_action( 'storefront_footer', 'custom_storefront_credit', 20 ); } function custom_storefront_credit() { ?> © <?php echo 'Ваш текст'; ?> <?php }

По дате
По Рейтингу
Кодировка файла какая? Надо UTF-8 без BOM в notepad++
Убедитесь, что перед <?php и после ?> нет пустых строк и пробелов
Тут же видно из текста ошибки что вы пытаетесь второй раз послать заголовок HTTP...
Больше по теме