这个答案可能会根据您安装的主题或插件而改变,但代码通常可以在主题编辑器的类似位置找到。
例如,如果您在WordPress 3.2.1中使用默认的二十一主题,则可以通过选中此处来验证注释调用的位置:
登录到您的管理界面单击“外观”菜单单击“外观”下的编辑器单击右侧的评论可编辑评论。php文件这将打开WordPress用来生成评论显示的页面。
某些主题可能输入了代码,您可以直接编辑以更改显示。2111使用默认WordPress函数“comment\\u form()”来显示用于新注释的表单。
在这一点上,可以做很多事情来更改值,您应该看看full documentation of comment_form() 了解所有详细信息。要开始学习,请单击右侧的主题函数打开这些函数。php文件,并在底部添加以下内容:
// This creates a filter to change the default comment fields.
add_filter(\'comment_form_default_fields\', \'my_comment_changes\');
function my_comment_changes ( $my_fields ) {
$my_fields[ \'url\' ] = \'\'; //This will make the website area display nothing.
$my_fields[ \'custom\' ] = \'test field only<br>\'; // This will add a custom field.
return $my_fields;
}
如果你需要的话,它肯定会变得更复杂,但这会让你开始。