我正在努力遵循codex关于修改评论表单(位于here)外观的内容,但我无法让它发挥作用。尽管我的参数数组应该改变它,但仍会显示默认的注释表单。
在模板中我有:comments_template('mycomments.php');
则...
<?php
//inside my mycomments.php file
$comment_args = array (
'fields' => array('author', 'email'),
'must_log_in' => true,
'title_reply' => 'Review this product',
'label_submit' => 'Submit',
);
comment_form($comment_args, $post->ID); ?>
我做错了吗?
答案 0 :(得分:0)
我明白了。我的论点没有错。相反......我需要/
面向我自定义评论模板的相对链接:
comments_template('/mycomments.php');
故事的道德:如果您无法使模板工作(根本),请确保您实际上正在加载正确的模板文件!