
<?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 automatically add tags to WordPress posts</title>
	<atom:link href="http://www.vidalquevedo.com/how-to-add-tags/feed" rel="self" type="application/rss+xml" />
	<link>http://www.vidalquevedo.com/how-to-add-tags</link>
	<description></description>
	<lastBuildDate>Wed, 07 Dec 2011 14:20:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Wordpress: how to automatically convert custom fields to post tags &#124; Vidal Quevedo</title>
		<link>http://www.vidalquevedo.com/how-to-add-tags/comment-page-1#comment-176</link>
		<dc:creator>Wordpress: how to automatically convert custom fields to post tags &#124; Vidal Quevedo</dc:creator>
		<pubDate>Mon, 26 Sep 2011 16:56:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.vidalquevedo.com/?p=1033#comment-176</guid>
		<description>[...] while ago, someone asked something similar, and I put together a little script to help, but now I refined that script to be more encompassing. [...]</description>
		<content:encoded><![CDATA[<p>[...] while ago, someone asked something similar, and I put together a little script to help, but now I refined that script to be more encompassing. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vidal</title>
		<link>http://www.vidalquevedo.com/how-to-add-tags/comment-page-1#comment-161</link>
		<dc:creator>vidal</dc:creator>
		<pubDate>Sat, 13 Aug 2011 16:52:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.vidalquevedo.com/?p=1033#comment-161</guid>
		<description>You are welcome! I&#039;m glad it worked.</description>
		<content:encoded><![CDATA[<p>You are welcome! I&#8217;m glad it worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aris</title>
		<link>http://www.vidalquevedo.com/how-to-add-tags/comment-page-1#comment-160</link>
		<dc:creator>Aris</dc:creator>
		<pubDate>Sat, 13 Aug 2011 09:10:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.vidalquevedo.com/?p=1033#comment-160</guid>
		<description>Hi Vidal,

Your above solutions works like charm when I implement it on my project.

Thank you very much! More power...

Kind Regards,

Aris</description>
		<content:encoded><![CDATA[<p>Hi Vidal,</p>
<p>Your above solutions works like charm when I implement it on my project.</p>
<p>Thank you very much! More power&#8230;</p>
<p>Kind Regards,</p>
<p>Aris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aris</title>
		<link>http://www.vidalquevedo.com/how-to-add-tags/comment-page-1#comment-124</link>
		<dc:creator>Aris</dc:creator>
		<pubDate>Sun, 17 Jul 2011 00:35:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.vidalquevedo.com/?p=1033#comment-124</guid>
		<description>Thanks for putting time on this, Vidal!

I will let you know of the results once I implement your solution.

I really appreciate your help..

Regards,

Aris</description>
		<content:encoded><![CDATA[<p>Thanks for putting time on this, Vidal!</p>
<p>I will let you know of the results once I implement your solution.</p>
<p>I really appreciate your help..</p>
<p>Regards,</p>
<p>Aris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vidal</title>
		<link>http://www.vidalquevedo.com/how-to-add-tags/comment-page-1#comment-123</link>
		<dc:creator>vidal</dc:creator>
		<pubDate>Sat, 16 Jul 2011 04:53:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.vidalquevedo.com/?p=1033#comment-123</guid>
		<description>Hi Aris, 

Sorry it took me so long to get back to you, but I finally got some time to take a stab at this.

I found a solution to your problem using jQuery. Paste the code below to your theme&#039;s functions.php file and it will allow you to add all-in-one-seo-pack keywords as post tags on publish/update.

Thanks, and please let me know how it goes!

Vidal

&lt;code&gt;
&lt;?php
function aiosp_convert_keywords_to_tags(){?&gt;
	
    	jQuery(document).ready(function($){			
			$(&#039;form#post&#039;).submit(function(event){
				$(&#039;#new-tag-post_tag&#039;).val($(&#039;input[name=&quot;aiosp_keywords&quot;]&#039;).val());
			});
		});
    
&lt;?php }

add_action(&#039;admin_footer&#039;, &#039;aiosp_convert_keywords_to_tags&#039;);
?&gt;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hi Aris, </p>
<p>Sorry it took me so long to get back to you, but I finally got some time to take a stab at this.</p>
<p>I found a solution to your problem using jQuery. Paste the code below to your theme&#8217;s functions.php file and it will allow you to add all-in-one-seo-pack keywords as post tags on publish/update.</p>
<p>Thanks, and please let me know how it goes!</p>
<p>Vidal</p>
<p><code><br />
< ?php<br />
function aiosp_convert_keywords_to_tags(){?&gt;</p>
<p>    	jQuery(document).ready(function($){<br />
			$('form#post').submit(function(event){<br />
				$('#new-tag-post_tag').val($('input[name="aiosp_keywords"]').val());<br />
			});<br />
		});</p>
<p>&lt;?php }</p>
<p>add_action(&#039;admin_footer&#039;, &#039;aiosp_convert_keywords_to_tags&#039;);<br />
?><br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aris</title>
		<link>http://www.vidalquevedo.com/how-to-add-tags/comment-page-1#comment-62</link>
		<dc:creator>Aris</dc:creator>
		<pubDate>Sat, 25 Jun 2011 15:44:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.vidalquevedo.com/?p=1033#comment-62</guid>
		<description>Thanks for your help, Vidal!

I am aware of that feature of the All in one SEO plugin where you can automatically set the tags as meta keywords. 

But the solution I want to implement is the the other way around.

I want the the keywords on  &lt;a href=&quot;http://www.ruleofthirdz.com/wp-content/uploads/seeo-key-to-tag.png&quot; rel=&quot;nofollow&quot;&gt;SEO meta keywords to be automatically fetch or converted into  post tags upon hitting publish.&lt;/a&gt;.

Thanks Again...

Best Regards,
Aris</description>
		<content:encoded><![CDATA[<p>Thanks for your help, Vidal!</p>
<p>I am aware of that feature of the All in one SEO plugin where you can automatically set the tags as meta keywords. </p>
<p>But the solution I want to implement is the the other way around.</p>
<p>I want the the keywords on  <a href="http://www.ruleofthirdz.com/wp-content/uploads/seeo-key-to-tag.png" rel="nofollow">SEO meta keywords to be automatically fetch or converted into  post tags upon hitting publish.</a>.</p>
<p>Thanks Again&#8230;</p>
<p>Best Regards,<br />
Aris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vidal</title>
		<link>http://www.vidalquevedo.com/how-to-add-tags/comment-page-1#comment-61</link>
		<dc:creator>vidal</dc:creator>
		<pubDate>Sat, 25 Jun 2011 06:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.vidalquevedo.com/?p=1033#comment-61</guid>
		<description>Hi Aris,

The All-in-one SEO pack plugin for WP actually  &lt;a href=&quot;/wp-content/uploads/2011/06/Screen-shot-2011-06-25-at-1.25.04-AM.png&quot; rel=&quot;nofollow&quot;&gt;has an option&lt;/a&gt; to use post tags as meta keywords (in addition to any other keywords you may have already added to the post), possibly accomplishing what you are looking for. I&#039;m not sure if it does it by default, but you can definitely choose to do so on the plugin&#039;s option page.

Please let me know if that is what you were looking for. Otherwise, I&#039;d be happy to help you further explore the matter.

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi Aris,</p>
<p>The All-in-one SEO pack plugin for WP actually  <a href="/wp-content/uploads/2011/06/Screen-shot-2011-06-25-at-1.25.04-AM.png" rel="nofollow">has an option</a> to use post tags as meta keywords (in addition to any other keywords you may have already added to the post), possibly accomplishing what you are looking for. I&#8217;m not sure if it does it by default, but you can definitely choose to do so on the plugin&#8217;s option page.</p>
<p>Please let me know if that is what you were looking for. Otherwise, I&#8217;d be happy to help you further explore the matter.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aris</title>
		<link>http://www.vidalquevedo.com/how-to-add-tags/comment-page-1#comment-59</link>
		<dc:creator>Aris</dc:creator>
		<pubDate>Fri, 24 Jun 2011 15:27:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.vidalquevedo.com/?p=1033#comment-59</guid>
		<description>I think I this will be helpful on a project I&#039;m working on.

I&#039;m looking for a way to automatically fetch the SEO meta keyword from The All in one SEO Plugin to add as a post tag. The idea is to make the  meta keyword the same as the post tag upon hitting publish.

I appreciate your help in figuring out how to implement the above snippet on the project I&#039;m working with.

Thanks</description>
		<content:encoded><![CDATA[<p>I think I this will be helpful on a project I&#8217;m working on.</p>
<p>I&#8217;m looking for a way to automatically fetch the SEO meta keyword from The All in one SEO Plugin to add as a post tag. The idea is to make the  meta keyword the same as the post tag upon hitting publish.</p>
<p>I appreciate your help in figuring out how to implement the above snippet on the project I&#8217;m working with.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vidal</title>
		<link>http://www.vidalquevedo.com/how-to-add-tags/comment-page-1#comment-12</link>
		<dc:creator>vidal</dc:creator>
		<pubDate>Thu, 19 Aug 2010 00:27:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.vidalquevedo.com/?p=1033#comment-12</guid>
		<description>You are welcome!</description>
		<content:encoded><![CDATA[<p>You are welcome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rem</title>
		<link>http://www.vidalquevedo.com/how-to-add-tags/comment-page-1#comment-10</link>
		<dc:creator>Rem</dc:creator>
		<pubDate>Fri, 23 Jul 2010 20:06:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.vidalquevedo.com/?p=1033#comment-10</guid>
		<description>Thanks for the tip, very useful !</description>
		<content:encoded><![CDATA[<p>Thanks for the tip, very useful !</p>
]]></content:encoded>
	</item>
</channel>
</rss>

