Skip to content

Instantly share code, notes, and snippets.

@dasbairagya
Created October 27, 2018 09:56
Show Gist options
  • Select an option

  • Save dasbairagya/c20a2ca88c5ed9b85b7c951efe6c9101 to your computer and use it in GitHub Desktop.

Select an option

Save dasbairagya/c20a2ca88c5ed9b85b7c951efe6c9101 to your computer and use it in GitHub Desktop.
Replace the textarea field with wordpress default editor.
<!-- <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