Created
November 13, 2015 02:19
-
-
Save mrbobbybryant/93c0e48ae14c64a2c1aa to your computer and use it in GitHub Desktop.
example of wp_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
| <?php | |
| $content = get_post_meta( $post->ID, 'principle_duties', true ); | |
| if ( ! isset( $content ) ) { | |
| $content = 'What I want it to say'; | |
| } | |
| $editor = 'principle_duties'; | |
| $settings = array( | |
| 'textarea_rows' => 8, | |
| 'media_buttons' => false, | |
| ); | |
| wp_editor( $content, $editor, $settings); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment