在WordPress中,comments_template()
函数用于加载评论模板。这个函数通常在你的主题的 single.php
文件或者其他模板文件中使用,以显示与特定文章或页面关联的评论列表。
以下是如何在WordPress主题中使用 comments_template()
函数的基本步骤:
- 确保你的主题支持评论功能。这通常在主题的
functions.php
文件中通过添加以下代码来启用:
if ( ! function_exists( 'theme_setup' ) ) :
function theme_setup() {
// 启用主题支持评论
add_theme_support( 'post-thumbnails' );
add_theme_support( 'comments' );
// 其他主题设置...
}
endif;
add_action( 'after_setup_theme', 'theme_setup' );
- 在你的主题的
single.php
文件中(或者任何你想要显示评论的地方,如page.php
),调用comments_template()
函数。通常,这个调用会放在文章内容之后。
以下是一个基本的例子:
<?php
get_header(); // 获取页眉模板
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
<!-- 其他文章头部信息 -->
</header>
<div class="entry-content">
<?php the_content(); ?>
<?php
// 分页链接,如果文章被分成多个页面
wp_link_pages( array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'text-domain' ),
'after' => '</div>',
) );
?>
</div>
<?php
// 在这里调用 comments_template() 来加载评论模板
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>
</article>
<?php endwhile; endif;
get_sidebar(); // 获取侧边栏模板
get_footer(); // 获取页脚模板
?>
在上面的代码中,comments_template()
函数被放置在文章内容之后,它会自动加载位于主题目录下的 comments.php
文件,这个文件包含了评论列表和评论表单的HTML结构。
如果你想要自定义评论模板,你可以创建一个新的模板文件,例如 custom-comments.php
,然后在调用 comments_template()
时指定这个文件:
comments_template( '/custom-comments.php' );
这样,WordPress就会加载你自定义的评论模板而不是默认的 comments.php
。