I am using wp_editor on the front end, but I want to change it to textarea because I want to restrict input. Can you tell me how to change it?
I changed the $ editor_id of wp_editor (string $ content, string $ editor_id, array $ settings = array ()) to be equivalent to the id of the textarea, but the input data was empty at the destination .
`php wp_editor( $post_excerpt, 'post_excerpt', array( 'editor_height' => 50, 'quicktags' => false, 'media_buttons' => false, 'teeny' => true, 'editor_class' => 'post_excerpt' ) ); `