テーマのfunction.phpに追記します。 apply_filters()とadd_action()の説明は別の機会に /* * 一般ユーザーにはコメント投稿フォームを表示しない * Dont display the comment form for general user */ add_action( 'comments_open', '_comments_open', 10, 1); function _comments_open($open) { global $current_user; get_currentuserinfo(); if (!$current_user->ID) { return false; } return $open; }
TAGS > add_action, apply_filters, comments_open
NO COMMENT