Skip to content

Instantly share code, notes, and snippets.

@foxydot
Created February 18, 2014 17:29
Show Gist options
  • Save foxydot/9075575 to your computer and use it in GitHub Desktop.
Save foxydot/9075575 to your computer and use it in GitHub Desktop.
wp_editor wpalchemy repeating
<?php
$mb->the_field('content');
$mb_content = html_entity_decode($mb->get_the_value(), ENT_QUOTES, 'UTF-8');
$mb_editor_id = sanitize_key($mb->get_the_name());
$mb_settings = array('textarea_name'=>$mb->get_the_name(),'textarea_rows' => '5',);
wp_editor( $mb_content, $mb_editor_id, $mb_settings );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment