Je peux utiliser la fonction wp_editor()
pour ajouter une fonction personnalisée après la fonction wp_insert_post()
(avec paramètre post_content) dans mon plugin.
J'ai besoin de pouvoir enregistrer les données de la fonction wp_editor()
.
Comment puis-je obtenir une sortie?
Merci beaucoup.
$content = '';
$editor_id = 'mycustomeditor';
wp_editor( $content, $editor_id );
/** If you want to get data wp_editor value from POST **/
print_r($_POST['mycustomeditor']);