В каком каталоге я могу найти HTML-файл моих страниц Wordpress?
5 ответ
- голосов
-
- 2011-02-17
WordPress хранит контент в базе данных,физических файлов с содержимым страниц (или сообщений) нет. Файлы шаблона темы определяют способ рендеринга и отображения вашего сайта,вы можете найти эти файлы в
wp-content/themes/YOUR-ACTIVE-THEME-NAME-HERE
..Здесь вы можете найти много информации о темах и их развитии.
http://codex.wordpress.org/Theme_DevelopmentДополнительную информацию и рекомендации можно найти в другой документации,указанной в разделе ресурсов на указанной выше странице,здесь она предназначена для быстрого ознакомления.
http://codex.wordpress.org/Theme_Development#Resources_and_ReferencesБыстрый поиск на форумах WordPress также предоставил бы вам необходимую информацию (просто кое-что,что нужно отметить).
http://wordpress.org/search/where+is+content+stored? форумы=1Надеюсь,это поможет.
WordPress stores content in the database, there are not any physical files with the content of the pages(or posts). The theme's template files control how to render and display your site, you can find those files in
wp-content/themes/YOUR-ACTIVE-THEME-NAME-HERE
..You can find lots of information on themes and their development here.
http://codex.wordpress.org/Theme_DevelopmentAdditional information and guidance can be found through the other documentation listed in the resources section of the above linked page, here it is for quick reference.
http://codex.wordpress.org/Theme_Development#Resources_and_ReferencesA quick search of the WordPress forums would have also provided you with the information needed(just something to note).
http://wordpress.org/search/where+is+content+stored?forums=1Hope that helps.
-
- 2017-12-25
Вы можете найти свой корневой HTML-файл здесь: /public_html/wp-content/themes/ "ВАШЕ ИМЯ ТЕМЫ" /framework/templates Там должен быть файл с именем header.php.
You can find your root HTML file in here: /public_html/wp-content/themes/"YOUR THEME NAME"/framework/templates A file named header.php has to be in there.
-
Благодаря!Кстати.для меня теперь это было напрямую/public_html/wp-content/themes/{THEME}/header.phpThanks! Btw. for me now it was directly /public_html/wp-content/themes/{THEME}/header.php
- 0
- 2018-06-07
- Andrei Hardau
-
- 2011-02-17
Пратик,
Хотя это зависит от темы,многие структурные элементы дизайна страниц содержатся в файлах .php тем.Перейдите в ПАНЕЛЬ> ВНЕШНИЙ ВИД> РЕДАКТОР ,и вы увидите файлы,составляющие шаблоны,а в случае некоторых тем - разделы отображаемых страниц.Вы можете войти в эти файлы с помощью редактора WordPress или текстового редактора и внести изменения в сам шаблон темы,что может позволить вам внести желаемые изменения (обязательно работайте с копии,пока вы не будете удовлетворены).
На примере темы Twenty-Ten можно найти тег & lt;body> информацию в файле header.php.
Prateek,
Although it is theme dependent, many of the structural elements for your pages design are contained in the themes .php files. Go to DASHBOARD > APPEARANCE > EDITOR and you will see the files that make up the templates and in the case of some themes, sections of your displayed pages. You can go into these files using the WordPress editor or a text editor and make changes to the theme template itself, which may allow you to make the changes you desire (be sure to work from a copy until you are satisfied).
Using the Twenty-Ten theme as an example, you can find the < body > information in the header.php file.
-
- 2018-07-01
Каталог,в котором вы найдете файлы,был указан выше.Но я чувствовал,что есть что добавить.Файлpage.php содержит структуру для страниц вашего сайта,которые не являются вашей домашней страницей или страницей вашего блога/сообщений. Обычно вы видите такие вещи,как
<?php get_header(): ?> <div class="container"> <?php the_content(); ?> </div>
Ну и,конечно же,многое другое.Но важно то,что документ время от времени попадает вphp и выходит из него,а между ними находится редактируемый HTML. Надеюсь,это поможет
The directory that you would find the files has been answered above. But I felt that there was more to add. The page.php file contains the framework for pages on your site that are not your home page, or your blog/posts page. Usually you will see things like
<?php get_header(): ?> <div class="container"> <?php the_content(); ?> </div>
As well as other things of course. But what is important there is that the document drops in and out of php at times, and in between is edit-able html. I hope this helps
-
- 2020-07-09
Это основной путь только к сохраненному файлу HTML. /public_html/wp-content/themes/здесь ваше имя темы/ а сообщение и страницы хранятся в таблице базы данных с именем wp_posts Если вы хотите получить более подробную информацию об этом,проверьте Где находятся страницы и сообщения WordPress.Сохранено
This is the main path to stored Html file only /public_html/wp-content/themes/here your theme name/ and post and pages are stored in a database table name wp_posts If you more details about it go and check Where are WordPress Pages and Posts Stored
Я хочу вручную отредактировать код моих страниц WordPress.Интерфейс WP позволяет мне только индивидуально редактировать CSS или PHP.Функция редактирования страницы дает мне доступ к определенной части кода,за исключением тега тела.
Пожалуйста,помогите мне найти мои файлы на сервере.
Спасибо за вашу помощь!
:)