WordPress
get_template_part ()
수색…
통사론
- get_template_part ( 'file-name-no-extension');
매개 변수
매개 변수 | 기술 |
---|---|
file-name-no-extension | 확장명이없는 템플릿 부분의 이름입니다. 예 : 'foo.php'대신 'foo' |
템플릿 파트로드 중
특정 지정된 파일의 코드를 호출 한 다른 파일로 가져옵니다.
예 : example.php
<h1>Hello World!</h1>
inside page.php
// header code
get_template_part('example');
// rest of page code
산출:
// header code
<h1>Hello World</h1>
// rest of page code
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow