text WordPress函数将TinyMCE WYSIWYG编辑器添加到“Textarea”类型的任何自定义字段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text WordPress函数将TinyMCE WYSIWYG编辑器添加到“Textarea”类型的任何自定义字段相关的知识,希望对你有一定的参考价值。

// 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 );

以上是关于text WordPress函数将TinyMCE WYSIWYG编辑器添加到“Textarea”类型的任何自定义字段的主要内容,如果未能解决你的问题,请参考以下文章

javascript 一些TinyMCE辅助函数用于Wordpress。

在 WordPress 插件中调用 TinyMCE

WordPress TinyMCE 不提交内容

tinyMCE.editors[] wordpress 4.8 未定义

wordpress怎么安装泡泡表情

WordPress TinyMCE 编辑器增强技巧大全