时间:2024-03-16
WordPress模板标签comments_template首先会尝试加载评论模板comments.php,如果comments.php不存在,则输出默认的评论区HTML
comments_template( string $file = '/comments.php', bool $separate_comments = false )
$file
字符串值,可选,默认值为/comments.php
可以指定需要加载的评论模板,而不必是comments.php
$separate_comments
布尔值,可选,默认值为false
是否根据评论类型来输出评论,几乎用不到。
comments_template标签通常用在single.php和page.php的主循环中,用来输出评论列表以及评论表单。
comments_template()函数位于:wp-includes/comment-template.php
相关函数:
get_header()
get_sidebar()
get_template_part()
get_search_form()
get_footer()
Copyright © 2019-2024 ytldj.com