/**
* コメントのメールアドレス欄を削除します。
*/
function comment_form_defaults_remove_email($defaults) {
// 「メールアドレスが公開されることはありません。」を削除
$defaults['comment_notes_before'] = '';
// メールアドレス欄を削除
$defaults['fields']['email'] = '';
return $defaults;
}
add_filter( 'comment_form_defaults', 'comment_form_defaults_remove_email' );
/**
* コメントからウェブサイトを削除
*/
function my_comment_form_remove($arg) {
$arg['url'] = '';
return $arg;
}
add_filter('comment_form_default_fields', 'my_comment_form_remove');
/**
* 無記名のコメント投稿者名を変更する
*/
function rename_anonymous_name($author) {
if ( !$author || $author == __('Anonymous') ) {
$author = '名無しさん ';
}
return $author;
}
add_filter('get_comment_author', 'rename_anonymous_name' );
コメント