sitepress = $sitepress; } public function add_hooks() { add_filter( 'comment_form_field_comment', array( $this, 'add_wpml_language_field' ) ); } /** * @return mixed */ public function add_wpml_language_field( $comment_field ) { $comment_field .= ''; return $comment_field; } }