《wordpress评论标签comments_template 的使用》要点:
本文介绍了wordpress评论标签comments_template 的使用,希望对您有用。如果有疑问,可以联系我们。
导读:comments_template标签是便利我们在wordpress网站中调用评论文件comments.php的,如果在主题当中没有comments.php文件,标签会自动获取程序路...
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' ); ?> 《wordpress评论标签comments_template 的使用》是否对您有启发,欢迎查看更多与《wordpress评论标签comments_template 的使用》相关教程,学精学透。维易PHP学院为您提供精彩教程。
转载请注明本页网址:
http://www.vephp.com/jiaocheng/13788.html