此部分来自函数comment_form()
这就是你的主题,可能在comments.php
:
\'comment_notes_after\' => \'<p class="form-allowed-tags">\'
. sprintf( __(
\'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags
and attributes: %s\' ), \' <code>\' . allowed_tags() . \'</code>\' )
. \'</p>\',
您可以使用一个简单的插件将其过滤掉:
<?php
/*
Plugin Name: Remove Markup Notice on Comment Form
*/
add_filter( \'comment_form_defaults\', \'wpse_41181_remove_markup_notice\', 10, 1 );
function wpse_41181_remove_markup_notice( $strings )
{
$strings[\'comment_notes_after\'] = \'\';
return $strings;
}
你是怎么得到更好的描述的……我不知道。我相信有一个常见问题解答。中没有设置吗
/wp-admin/
对于此模块?