comments_template()(取得評論模板)
comments_template() 函數用來取得評論模板,一般只能用在文章或頁面上,如果不是文章或頁面將無法顯示。
用法
comments_template( $file, $separate_comments );
參數
$file
(字串)(可選)要評論範本檔案。
預設值:/comments.php(目前主題根目錄的 comments.php 檔案)。
$separate_comments
(布林)(可選)是否根據評論的類型區分評論。
預設值:False
回傳值
此函數無回傳值。
範例
預設引入當前主題根目錄的 comments.php 檔案。
<?php comments_template(); ?>
引入自訂檔案:
<?php comments_template( '/short-comments.php' ); ?>
其它
此函數位於:wp-includes/comment-template.php
get_form(搜尋表單,搜尋表單的程式碼位於目前主題根目錄的searchform.php 檔案。
get_search_form( $echo );
<form role="search" method="get" action="<?php esc_url( home_url( '/' )); ?>"> <div> <label for="s"><?php _x( 'Search for:', 'label' ); ?></label> <input type="text" value="<?php get_search_query(); ?>" name="s" /> <input type="submit" value="<?php esc_attr_x( 'Search', 'submit button' ); ?>" /> </div> </form>