Skip to content

Instantly share code, notes, and snippets.

@mrbobbybryant
Created November 13, 2015 02:19
Show Gist options
  • Select an option

  • Save mrbobbybryant/93c0e48ae14c64a2c1aa to your computer and use it in GitHub Desktop.

Select an option

Save mrbobbybryant/93c0e48ae14c64a2c1aa to your computer and use it in GitHub Desktop.
example of wp_editor
<?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