'; echo $comment_field; }, 'comment', 'normal' ); }); /* コメント保存 */ add_filter( 'comment_save_pre', function( $comment_content ) { global $comment_id; thk_admin_comment_post( $comment_id ); return $comment_content; }); add_filter( 'comment_post', 'thk_admin_comment_post' ); /* コメント編集画面のフィールド */ add_filter( 'comment_form_field_comment', function( $comment_field ) { $comment_field .= ''; return $comment_field; }); /* コメントの表示 */ add_filter( 'get_comment_text', function( $comment_content, $comment, $args = array() ) { return thk_admin_comments( $comment_content, $comment ); }, 10, 3 );