-
-
Save epicallan/ffc7ef3ee18f5f0b9540 to your computer and use it in GitHub Desktop.
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
// important: note the priority of 99, the js needs to be placed after tinymce loads | |
// important: note that this assumes you're using http://wordpress.org/extend/plugins/verve-meta-boxes/ | |
// to create the textarea - otherwise change your selector | |
function admin_add_wysiwyg_custom_field_textarea() | |
{ ?> | |
<script type="text/javascript">/* <![CDATA[ */ | |
jQuery(function($){ | |
var i=1; | |
$('.verve_meta_box_content textarea').each(function(e) | |
{ | |
var id = $(this).attr('id'); | |
if (!id) | |
{ | |
id = 'customEditor-' + i++; | |
$(this).attr('id',id); | |
} | |
tinyMCE.execCommand('mceAddControl', false, id); | |
}); | |
}); | |
/* ]]> */</script> | |
<?php } | |
add_action( 'admin_print_footer_scripts', 'admin_add_wysiwyg_custom_field_textarea', 99 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment