워드 프레스 페이지의 HTML 파일은 어느 디렉토리에서 찾을 수 있습니까?
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_ReferencesWordPress 포럼을 빠르게 검색하면 필요한 정보도 제공되었을 것입니다 (참고 사항).
http://wordpress.org/search/where+is+content+stored? forums=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.
-
-
감사!Btw.지금은 직접/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
Prateek,
테마에 따라 다르지만 페이지 디자인을위한 많은 구조적 요소가 테마 .php 파일에 포함되어 있습니다. DASHBOARD> APPEARANCE> EDITOR 로 이동하면 템플릿을 구성하는 파일이 표시되며 일부 테마의 경우 표시된 페이지의 섹션이 표시됩니다.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/here yourthemename/ 게시물과 페이지는 데이터베이스 테이블 이름 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
내 워드 프레스 페이지에서 코드를 수동으로 수정하고 싶습니다.WP 인터페이스에서는 CSS 또는 PHP를 개별적으로 편집 할 수만 있습니다.페이지 편집 기능을 사용하면 본문 태그를 제외한 코드의 특정 부분에 액세스 할 수 있습니다.
서버에서 내 파일을 찾을 수 있도록 도와주세요.
도움에 감사드립니다!
:)