Created
February 14, 2012 20:25
-
-
Save bicyclista/1830029 to your computer and use it in GitHub Desktop.
wpalchemy metaboxes VS. wordpress wp_editor()
This file contains 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
<p> | |
<?php $mb->the_field('citation'); | |
//array of settings for wp_editor() | |
$settings = array( | |
'wpautop' => true, | |
'textarea_rows' => '15', | |
'media_buttons' => 'false', | |
'tinymce' => true, | |
'quicktags' => true | |
); | |
$val = $mb->get_the_value(); | |
$id = $mb->get_the_name(); | |
wp_editor($val, $id , $settings ); | |
?> | |
</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment