Created
October 27, 2018 09:56
-
-
Save dasbairagya/c20a2ca88c5ed9b85b7c951efe6c9101 to your computer and use it in GitHub Desktop.
Replace the textarea field with wordpress default editor.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- <textarea name="general_info" class="form-control rounded-0" id="exampleFormControlTextarea2" rows="3"><?php echo get_user_meta($current_user->ID,'general_info', true);?></textarea> --> | |
| <?php | |
| $content = get_user_meta($current_user->ID,'general_info', true); | |
| $editor_id = 'general_info';//here editor is the name field of textarea | |
| wp_editor( $content, $editor_id ); | |
| ?> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment