Languages: English • Français • 日本語 한국어 • Русский • Português do Brasil • (Add your language)
워드프레스 템플릿은 퍼즐의 조각처럼 결합되어 워드프레스 사이트에서 웹페이지를 표시합니다. 일부 템플릿 (예 : 헤더와 푸터 템플릿 파일)은 모든 웹 페이지에 사용되는 반면 다른 템플릿은 특정 조건 하에서에만 사용됩니다.
이 문서는 다음의 질문에 답해 줄 것입니다.:
특정 유형의 페이지를 볼 때 어떤 서식 파일이 사용되는가?
워드프레스 1.5 버전에서 테마 가 소개된 이후로 템플릿 은 더욱 더 많은 설정을 할 수 있게 되었습니다. 워드프레스 테마 개발을 하기 위해서는 워드프레스가 페이지를 표시할 때 템플릿 파일을 선택하는 방식을 제대로 이해하는 것이 필수적입니다. 이미 존재하는 워드프레스 테마를 커스텀하기 위해서 정보를 찾고 있었다면, 이 문서는 어떤 템플릿 파일을 편집해야할 지를 결정하는데 도움을 줄 것입니다.
워드프레스는 쿼리 유형에 따라 불러올 템플릿을 결정하는데 몇 가지 방법을 제공합니다. 워드프레스 테마 개발자는 Conditional Tags 를 사용해서 특정 페이지를 생성하기 위해 사용하는 템플릿을 제어할 수도 있습니다. 일부 테마들은 이 문서에서 설명하는 템플릿 파일 모두를 가지고 있지 않을 수도 있습니다. 또 일부 테마들은 조건 태그를 사용해서 다른 템플릿 파일을 불러오는 방식을 사용합니다. 이에 대해선 Conditional Tags 와 "Query Based" in Theme Development 를 참고하시면 됩니다.
WordPress uses the Query String — information contained within each link on your web site — to decide which template or set of templates will be used to display the page.
First, WordPress matches every Query String to query types — i.e. it decides what type of page (a search page, a category page, the home page etc.) is being requested.
Templates are then chosen — and web page content is generated — in the order suggested by the WordPress Template hierarchy, depending upon what templates are available in a particular WordPress Theme.
WordPress looks for template files with specific names in the current Theme's directory and uses the first matching template file listed under the appropriate query section below.
With the exception of the basic index.php template file, Theme developers can choose whether they want to implement a particular template file or not. If WordPress cannot find a template file with a matching name, it skips down to the next file name in the hierarchy. If WordPress cannot find any matching template file, index.php (the Theme's home page template file) will be used.
If your blog is at http://example.com/blog/ and a visitor clicks on a link to a category page like http://example.com/blog/category/your-cat/: Here is the progression of how WordPress uses the template hierarchy to find and generate the right file.
WordPress looks for a template file in the current Theme's directory that matches the category's ID.
If a visitor goes to your home page at http://example.com/blog/, the following happens:
다음 다이어그램은 워드프레스 계층구조를 기반으로 페이지를 생성할 때 어떤 템플릿 파일이 호출되는 지를 보여주고 있습니다.
템플릿 계층 다이어그램과 템플릿 관련 conditional tags, body CSS 클래스에 대한 심도 있는 정보는 여기에서 찾아볼 수 있습니다.
다음 섹션들은 쿼리 유형에 따라 호출되는 템플릿 파일의 순서를 설명합니다.
(when displaying a single custom post type see the Single Post display section above.)
The WordPress templates system allow you to filter the hierarchy. The filter (located in the get_query_template() function) uses this filter name: "{$type}_template" where $type is the a file name in the hierarchy without the .php extension.
Full list:
For example, let's take the default author hierarchy:
To add author-{role}.php before author.php we can manipulate the actual hierarchy using the 'author_template' hook. This allows a request for /author/username where username has the role of editor to display using author-editor.php if present in the current themes directory.
function author_role_template( $templates='' ) { $author = get_queried_object(); $role=$author->roles[0]; if(!is_array($templates) && !empty($templates)) { $templates=locate_template(array("author-$role.php",$templates),false); } elseif(empty($templates)) { $templates=locate_template("author-$role.php",false); } else { $new_template=locate_template(array("author-$role.php")); if(!empty($new_template)) array_unshift($templates,$new_template); } return $templates; } add_filter( 'author_template', 'author_role_template' );
wp-includes/theme.php
.wp-includes/template-loader.php
.Template Hierarchy: Category Templates, Tag Templates, Taxonomy Templates, Page Templates, Post Type Templates, Author Templates, Date Templates, Search Templates, 404 Templates, Attachment Templates, Loop Templates