$this->get_name(), ], $this->wp_editor_options ); ob_start(); wp_editor( $this->get_value(), $this->get_id(), $options ); $r = ob_get_contents(); ob_end_clean(); return $r; } /** @brief Set an editor option. @since 2015-11-05 14:33:21 **/ public function set_option( $key, $value ) { $this->wp_editor_options[ $key ] = $value; return $this; } }