Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save flayder/3d9080b114a26c29c323 to your computer and use it in GitHub Desktop.

Select an option

Save flayder/3d9080b114a26c29c323 to your computer and use it in GitHub Desktop.
/*
* функция добавления редактора
*/
function true_double_editor() {
global $post;
echo '<h2>Галерея</h2>'; // заголовок ко второму редактору
wp_editor( get_post_meta($post->ID, '_true_editor_data', true), 'trueeditor' );
}
add_action( 'edit_form_advanced', 'true_double_editor' );
add_action( 'edit_page_form', 'true_double_editor' );
/*
* функция сохранения данных
*/
function true_save_double_editor($post_id){
update_post_meta($post_id, '_true_editor_data', $_POST['trueeditor']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment