comments_template() (댓글 템플릿 가져오기)
comments_template() 함수는 댓글 템플릿을 얻는 데 사용됩니다. 일반적으로 기사나 페이지가 아닌 경우에는 표시되지 않습니다.
사용법
comments_template( $file, $separate_comments );
매개변수
$파일
(문자열) (선택 사항) 댓글을 달 수 있는 템플릿 파일입니다.
기본값: /comments.php (현재 테마 루트 디렉토리에 있는 comments.php 파일)
$separate_comments
(부울) (선택 사항) 유형에 따라 주석을 구분할지 여부입니다.
기본값: 거짓
반환값
이 함수에는 반환 값이 없습니다.
예
기본적으로 현재 테마의 루트 디렉터리에 있는 comments.php 파일을 가져옵니다.
<?php comments_template(); ?>
맞춤 파일 소개:
<?php comments_template( '/short-comments.php' ); ?>
기타
이 기능은 wp-includes/comment-template.php에 있습니다
get_search_form()(검색 양식 가져오기)
검색 양식을 얻는 데는 get_search_form() 함수가 사용됩니다. 검색 양식의 코드는 현재 테마의 루트 디렉토리에 있는 searchform.php 파일에 있습니다.
사용방법
get_search_form( $echo );
매개변수
$에코
(Boolean) (선택) true인 경우 검색 양식을 직접 인쇄합니다. 그렇지 않은 경우 검색 양식의 코드를 반환합니다.
기본값: True
반환값
(문자열) $echo 매개변수가 False인 경우 검색 양식의 HTML 코드를 반환합니다.
예
테마 루트 디렉터리에 searchform.php 파일이 없으면 아래 양식 코드의 기본값은 다음과 같습니다.
<form role="search" method="get" id="searchform" class="searchform" action="<?php esc_url( home_url( '/' )); ?>"> <div> <label class="screen-reader-text" for="s"><?php _x( 'Search for:', 'label' ); ?></label> <input type="text" value="<?php get_search_query(); ?>" name="s" id="s" /> <input type="submit" id="searchsubmit" value="<?php esc_attr_x( 'Search', 'submit button' ); ?>" /> </div> </form>
기타
이 기능은 wp-includes/general-template.php에 있습니다