wordpress评论标签comments_template
发布:smiling 来源: PHP粉丝网 添加日期:2014-07-23 17:13:54 浏览: 评论:0
comments_template标签是方便我们在wordpress网站中调用评论文件comments.php的,如果在主题当中没有comments.php文件,标签会自动获取程序路径wp-includes/theme-compat/comments.php的默认评论模块,在模板制作中我们使用以下标签进行调用:
<?php comments_template( $file, $separate_comments ); ?>
其中的$file参数是指可以导入不同的评论文件的,例如:我们在主题中创建一个 comments-other.php 文件,我们可以通过以下代码进行调用:
<?php comments_template( '/comments-other.php' ); ?>
Tags: wordpress评论标签 comments_template
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)