<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Use Multiple WordPress WYSIWYG Visual Editors	</title>
	<atom:link href="https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/</link>
	<description>Practical Real World Web Development</description>
	<lastBuildDate>Tue, 06 Sep 2016 10:42:45 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.2</generator>
	<item>
		<title>
		By: Colin Watson		</title>
		<link>https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37671</link>

		<dc:creator><![CDATA[Colin Watson]]></dc:creator>
		<pubDate>Tue, 06 Sep 2016 10:42:45 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1216#comment-37671</guid>

					<description><![CDATA[Hi, 

Im not sure if anyone is looking after this blog as the last comments are almost 2 years old.

But this is what Ive been trying to get for some time, multiple editing windows. Ive read through the comments here and its a bit beyond me - I can paste copied code into the right places on a html/css layout - but not originate it unfortunately. Has anyone produced code here that works and can I have steer on it please. 



Colin Watson]]></description>
			<content:encoded><![CDATA[<p>Hi, </p>
<p>Im not sure if anyone is looking after this blog as the last comments are almost 2 years old.</p>
<p>But this is what Ive been trying to get for some time, multiple editing windows. Ive read through the comments here and its a bit beyond me &#8211; I can paste copied code into the right places on a html/css layout &#8211; but not originate it unfortunately. Has anyone produced code here that works and can I have steer on it please. </p>
<p>Colin Watson</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Thilo		</title>
		<link>https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37662</link>

		<dc:creator><![CDATA[Thilo]]></dc:creator>
		<pubDate>Sat, 14 May 2016 10:00:16 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1216#comment-37662</guid>

					<description><![CDATA[This worked for me:

$mb-&#062;the_field(&#039;new_content&#039;);

$content_settings = array(
    &#039;textarea_rows&#039; =&#062; 15,
    &#039;textarea_name&#039; =&#062; $mb-&#062;get_the_name()
);

wp_editor(htmlspecialchars_decode($mb-&#062;get_the_value()), &#039;onepager-content&#039;, $content_settings);]]></description>
			<content:encoded><![CDATA[<p>This worked for me:</p>
<p>$mb-&gt;the_field(&#8216;new_content&#8217;);</p>
<p>$content_settings = array(<br />
    &#8216;textarea_rows&#8217; =&gt; 15,<br />
    &#8216;textarea_name&#8217; =&gt; $mb-&gt;get_the_name()<br />
);</p>
<p>wp_editor(htmlspecialchars_decode($mb-&gt;get_the_value()), &#8216;onepager-content&#8217;, $content_settings);</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Diseño web chile		</title>
		<link>https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37661</link>

		<dc:creator><![CDATA[Diseño web chile]]></dc:creator>
		<pubDate>Sat, 14 May 2016 00:19:58 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1216#comment-37661</guid>

					<description><![CDATA[i made a sample child theme too, where everything is fully integrated.

Regards]]></description>
			<content:encoded><![CDATA[<p>i made a sample child theme too, where everything is fully integrated.</p>
<p>Regards</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jonny		</title>
		<link>https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37652</link>

		<dc:creator><![CDATA[Jonny]]></dc:creator>
		<pubDate>Thu, 14 Jan 2016 23:49:39 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1216#comment-37652</guid>

					<description><![CDATA[For reference I just got this working (wp 4.4) with the following:

    $settings = array(&#039;textarea_name&#039; =&#062; $mb-&#062;get_the_name());
    wp_editor(html_entity_decode($metabox-&#062;get_the_value()), &#039;myID&#039;, $settings); 

[this is a variation on the solution Adam posted above 5 years ago. No changes to functions.php are needed]

I found I had to use html_entity_decode - otherwise any HTML would render in the tinymce editior on save. This could cause a problem when saving some content - only time will tell. 

Hope this assists someone.]]></description>
			<content:encoded><![CDATA[<p>For reference I just got this working (wp 4.4) with the following:</p>
<p>    $settings = array(&#8216;textarea_name&#8217; =&gt; $mb-&gt;get_the_name());<br />
    wp_editor(html_entity_decode($metabox-&gt;get_the_value()), &#8216;myID&#8217;, $settings); </p>
<p>[this is a variation on the solution Adam posted above 5 years ago. No changes to functions.php are needed]</p>
<p>I found I had to use html_entity_decode &#8211; otherwise any HTML would render in the tinymce editior on save. This could cause a problem when saving some content &#8211; only time will tell. </p>
<p>Hope this assists someone.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dimas		</title>
		<link>https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37646</link>

		<dc:creator><![CDATA[Dimas]]></dc:creator>
		<pubDate>Mon, 16 Nov 2015 04:06:17 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1216#comment-37646</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37645&quot;&gt;Javier&lt;/a&gt;.

message me at https://github.com/farinspace/ama and i&#039;ll see if I can help you out. :-)]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37645">Javier</a>.</p>
<p>message me at <a href="https://github.com/farinspace/ama" rel="nofollow ugc">https://github.com/farinspace/ama</a> and i&#8217;ll see if I can help you out. 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Javier		</title>
		<link>https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37645</link>

		<dc:creator><![CDATA[Javier]]></dc:creator>
		<pubDate>Sun, 15 Nov 2015 21:33:50 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1216#comment-37645</guid>

					<description><![CDATA[I just can&#039;t multiple instances of wp_editor (not repeatng) in wpalchemy .. this is driving me crazy!

None of the solutions here or over the internet is helping me ... I need your help please Dimas!!

Thanks in advance again. I already bought your item, please help me!]]></description>
			<content:encoded><![CDATA[<p>I just can&#8217;t multiple instances of wp_editor (not repeatng) in wpalchemy .. this is driving me crazy!</p>
<p>None of the solutions here or over the internet is helping me &#8230; I need your help please Dimas!!</p>
<p>Thanks in advance again. I already bought your item, please help me!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Javier		</title>
		<link>https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37644</link>

		<dc:creator><![CDATA[Javier]]></dc:creator>
		<pubDate>Sat, 14 Nov 2015 23:24:37 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1216#comment-37644</guid>

					<description><![CDATA[This is not working anymore ... any clue Mr Dimas?

Thanks in advance for this awesome WpAlchemy!]]></description>
			<content:encoded><![CDATA[<p>This is not working anymore &#8230; any clue Mr Dimas?</p>
<p>Thanks in advance for this awesome WpAlchemy!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dimas		</title>
		<link>https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37642</link>

		<dc:creator><![CDATA[Dimas]]></dc:creator>
		<pubDate>Thu, 08 Oct 2015 18:57:57 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1216#comment-37642</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37641&quot;&gt;Mario&lt;/a&gt;.

Mario, I haven&#039;t updated this post in some time .. do have a look through the comments as there are some gems in there which should help you out!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37641">Mario</a>.</p>
<p>Mario, I haven&#8217;t updated this post in some time .. do have a look through the comments as there are some gems in there which should help you out!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mario		</title>
		<link>https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37641</link>

		<dc:creator><![CDATA[Mario]]></dc:creator>
		<pubDate>Wed, 07 Oct 2015 18:41:20 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1216#comment-37641</guid>

					<description><![CDATA[Just starting to use wordpress and php, WPAlchemy is great exactly what I was looking for and easy to implement.

I&#039;ve followed this tutorial and the 3 boxes appear in my custom post, but only as comment boxes with out editing buttons and WYSIWYG options.

Has anyone run into this situation?

Thanks]]></description>
			<content:encoded><![CDATA[<p>Just starting to use wordpress and php, WPAlchemy is great exactly what I was looking for and easy to implement.</p>
<p>I&#8217;ve followed this tutorial and the 3 boxes appear in my custom post, but only as comment boxes with out editing buttons and WYSIWYG options.</p>
<p>Has anyone run into this situation?</p>
<p>Thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: tamaz		</title>
		<link>https://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/#comment-37469</link>

		<dc:creator><![CDATA[tamaz]]></dc:creator>
		<pubDate>Thu, 28 Nov 2013 23:59:39 +0000</pubDate>
		<guid isPermaLink="false">http://farinspace.com/?p=1216#comment-37469</guid>

					<description><![CDATA[Here is full tutorial, so look through its principle:


add_action( &#039;add_meta_boxes&#039;, &#039;adding_new_metaabox&#039; );				
function adding_new_metaabox() 
	{	
		add_meta_box(&#039;html_myid_61_section&#039;, &#039;TITLEE Helloo&#039;, &#039;my_output_function&#039;);
	}
	
function my_output_function( $post ) 
	{
	//so, dont ned to use esc_attr in front of get_post_meta
	$valueeee2=  get_post_meta($_GET[&#039;post&#039;], &#039;SMTH_METANAME_VALUE&#039; , true ) ;
	wp_editor( htmlspecialchars_decode($valueeee2), &#039;mettaabox_ID_stylee&#039;, $settings = array(&#039;textarea_name&#039;=&#062;&#039;MyInputNAME&#039;) );
	}


function save_my_postdata( $post_id ) 
{					
	if (!empty($_POST[&#039;MyInputNAME&#039;]))
		{
		$datta=htmlspecialchars($_POST[&#039;MyInputNAME&#039;]);
		update_post_meta($post_id, &#039;SMTH_METANAME_VALUE&#039;, $datta );
		}
}
add_action( &#039;save_post&#039;, &#039;save_my_postdata&#039; );	
]]></description>
			<content:encoded><![CDATA[<p>Here is full tutorial, so look through its principle:</p>
<p>add_action( &#8216;add_meta_boxes&#8217;, &#8216;adding_new_metaabox&#8217; );<br />
function adding_new_metaabox()<br />
	{<br />
		add_meta_box(&#8216;html_myid_61_section&#8217;, &#8216;TITLEE Helloo&#8217;, &#8216;my_output_function&#8217;);<br />
	}</p>
<p>function my_output_function( $post )<br />
	{<br />
	//so, dont ned to use esc_attr in front of get_post_meta<br />
	$valueeee2=  get_post_meta($_GET[&#8216;post&#8217;], &#8216;SMTH_METANAME_VALUE&#8217; , true ) ;<br />
	wp_editor( htmlspecialchars_decode($valueeee2), &#8216;mettaabox_ID_stylee&#8217;, $settings = array(&#8216;textarea_name&#8217;=&gt;&#8217;MyInputNAME&#8217;) );<br />
	}</p>
<p>function save_my_postdata( $post_id )<br />
{<br />
	if (!empty($_POST[&#8216;MyInputNAME&#8217;]))<br />
		{<br />
		$datta=htmlspecialchars($_POST[&#8216;MyInputNAME&#8217;]);<br />
		update_post_meta($post_id, &#8216;SMTH_METANAME_VALUE&#8217;, $datta );<br />
		}<br />
}<br />
add_action( &#8216;save_post&#8217;, &#8216;save_my_postdata&#8217; );	</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
