在我用作页面的模板文件中,我希望只允许2个用户发表评论,并允许所有其他用户仅查看这些评论(不允许他们添加评论)。
我的模板文件是:
<?php get_header(); ?>
<?php
if (get_current_user_id()==1 or get_current_user_id()==2 ) {
comments_template( \'\', true );
}
else
{
comments_template( \'/comments-with-no-form.php\', true );
} ?>
<?php get_footer(); ?>
通常,当我移除
comments_template
从单打开始。php,或者只删除
<?php comment_form(); ?>
来自评论。php,更改适用。但在单独的模板文件中,什么都不起作用。文件
comments-with-no-form.php
从不执行(仅comments.php更改的样式)。
非常感谢您的帮助。