Created
January 10, 2016 15:31
-
-
Save flayder/3d9080b114a26c29c323 to your computer and use it in GitHub Desktop.
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
| /* | |
| * функция добавления редактора | |
| */ | |
| 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