В header шаблона присутствует вот такой код:
<?php echo get_theme_option("head") . "\n"; function functions_file_exists() { if (!file_exists(dirname(__file__) . "/functions.php") || !function_exists("theme_usage_message") ) { echo ("<p style=\"padding:10px; margin: 10px; text-align:center; border: 2px dashed Red; font-family:arial; font-weight:bold; background: #fff; color: #000;\">This theme is released free for use under creative commons licence. All links in the footer should remain intact. These links are all family friendly and will not hurt your site in any way. This great theme is brought to you for free by these supporters.</p>"); die; } } functions_file_exists(); wp_head(); ?>
так как в php не особо силен, но понимаю что он контролирует или проверяет какие-то функции темы, похоже ссылки в подвале.
При удалении ссылки или этого кода, а также обоих - сайт выдает ошибку и не работает, приходится все возвращать на круги своя.
В принципе ссылку в футере скрыл слэшами типа коммент., но хотелось бы почистить шаблон.
Где и че вообще искать?
<?php echo get_theme_option("head") . "\n"; function functions_file_exists() { if (!file_exists(dirname(__file__) . "/functions.php") || !function_exists("theme_usage_message") ) { echo ("<p style=\"padding:10px; margin: 10px; text-align:center; border: 2px dashed Red; font-family:arial; font-weight:bold; background: #fff; color: #000;\">This theme is released free for use under creative commons licence. All links in the footer should remain intact. These links are all family friendly and will not hurt your site in any way. This great theme is brought to you for free by these supporters.</p>"); die; } } functions_file_exists(); wp_head(); ?>
так как в php не особо силен, но понимаю что он контролирует или проверяет какие-то функции темы, похоже ссылки в подвале.
При удалении ссылки или этого кода, а также обоих - сайт выдает ошибку и не работает, приходится все возвращать на круги своя.
В принципе ссылку в футере скрыл слэшами типа коммент., но хотелось бы почистить шаблон.
Где и че вообще искать?