首页 > CMS > Wordpress > 正文

WordPress 101 评论控制 关于评论模板

2024-09-07 00:52:34
字体:
来源:转载
供稿:网友

WordPress中,用comments.php模板专门处理评论相关的部分。

包括评论框和已有的评论一览。

评论模板可以放到文章或固定页面模板中,使用 comments_template 函数即可插入。

若不传入参数,就在当前位置插入comments.php模板内容。

若传入文件名作为第一个参数,则会插入该文件。

根目录为主题的路径。

例如主题路径有comments_single.php模板,要插入该模板可以这么写:

<?php ecomments_template('/comments_single.php'); ?>

一般来说评论区位于文章的最下方。

把comments_template 函数放在 single.php或者page.php模板WordPress循环后。

如果主题中没有comments.php模板,则会使用WordPress默认的comments.php模板。

该模板位于WordPress安装路径->wp-includes->theme_compat文件夹内。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表