This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1) header и footer перемещаем в отдельные файлы header.php и footer.php | |
| на их местах в index.php вставляем команды: | |
| <?php get_header();?> // подключаем header | |
| <?php get_footer();?> // подкючаем footer | |
| 2) в header.php после всех стилей добавляем функцию <?php wp_head();?>. В footer.php после всех скриптов добавляем <?php wp_footer();?> | |
| 3) ко всем локальным путям добавляем функцию по образцу: | |
| <link rel="stylesheet" href="<?php echo get_template_directory_uri();?>/css/main.css"> | |
| <script src="<?php echo get_template_directory_uri();?>/js/main.js"></script> | |
| <img src="<?php echo get_template_directory_uri();?>/img/photo.jpg" alt="my-photo"> | |
| 4) удалить admin bar. В файл functions.php добавить: |