<?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: Add Term or Taxonomy Meta Data	</title>
	<atom:link href="https://www.shibashake.com/wp/add-term-or-taxonomy-meta-data/feed" rel="self" type="application/rss+xml" />
	<link>https://shibashake.com/wp/add-term-or-taxonomy-meta-data</link>
	<description>Adventures in WordPress</description>
	<lastBuildDate>Tue, 10 Feb 2015 14:03:48 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9</generator>
	<item>
		<title>
		By: Creating a meta table for term or term taxonomy &#124; DL-UAT		</title>
		<link>https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-2#comment-654711</link>

		<dc:creator><![CDATA[Creating a meta table for term or term taxonomy &#124; DL-UAT]]></dc:creator>
		<pubDate>Tue, 10 Feb 2015 14:03:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=5893#comment-654711</guid>

					<description><![CDATA[[&#8230;] found this tutorial which works great for what I need. However, I am doubting wether it should be associated with the [&#8230;]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] found this tutorial which works great for what I need. However, I am doubting wether it should be associated with the [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Al		</title>
		<link>https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-2#comment-127260</link>

		<dc:creator><![CDATA[Al]]></dc:creator>
		<pubDate>Fri, 23 May 2014 08:59:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=5893#comment-127260</guid>

					<description><![CDATA[Hello Shiba,

Great tutorial.

Is that anyway we sort taxonomy term by meta_value? or can I retrieve taxonomy terms data using get_terms where $args = array (&#039;orderby&#039; =&#062; $meta_key or $meta_value)?

Thanks very much,

-Al
Select term_id from taxonomy_term table]]></description>
			<content:encoded><![CDATA[<p>Hello Shiba,</p>
<p>Great tutorial.</p>
<p>Is that anyway we sort taxonomy term by meta_value? or can I retrieve taxonomy terms data using get_terms where $args = array (&#8216;orderby&#8217; =&gt; $meta_key or $meta_value)?</p>
<p>Thanks very much,</p>
<p>-Al<br />
Select term_id from taxonomy_term table</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ShibaShake		</title>
		<link>https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-2#comment-79002</link>

		<dc:creator><![CDATA[ShibaShake]]></dc:creator>
		<pubDate>Sat, 24 Aug 2013 03:49:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=5893#comment-79002</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-2#comment-78931&quot;&gt;Karen&lt;/a&gt;.

I think there are some plugins that provide some higher level support for adding metadata to custom taxonomies. 
http://wordpress.org/plugins/taxonomy-metadata/

I haven&#039;t used the plugin so I don&#039;t have any details, but it (or others like it) might be a good starting point if you want to write your own plugin. Or you can just use that as a base, and built on top of it.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-2#comment-78931">Karen</a>.</p>
<p>I think there are some plugins that provide some higher level support for adding metadata to custom taxonomies.<br />
<a href="http://wordpress.org/plugins/taxonomy-metadata/" rel="nofollow ugc">http://wordpress.org/plugins/taxonomy-metadata/</a></p>
<p>I haven&#8217;t used the plugin so I don&#8217;t have any details, but it (or others like it) might be a good starting point if you want to write your own plugin. Or you can just use that as a base, and built on top of it.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Karen		</title>
		<link>https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-2#comment-78931</link>

		<dc:creator><![CDATA[Karen]]></dc:creator>
		<pubDate>Thu, 22 Aug 2013 18:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=5893#comment-78931</guid>

					<description><![CDATA[Hi Shiba,

I&#039;m afraid I&#039;ve never written a WordPress plugin, but if I understand your post correctly, it sounds like the setup for exactly what I hope to do: Beyond &quot;Name,&quot; &quot;Slug,&quot; and &quot;Description,&quot; there are some additional custom properties that I&#039;d like to be able to specify for the tags on my (customized, self-hosted) Wordpress site.  So I&#039;d like to add some custom input fields to the &quot;Add New Tag&quot; interface.

In the hopes that your sample code would make just such a new custom field, I familiarized myself with the basic structure of a plugin (including registering activation function and then calling the admin-init function), and I built your sample code into what I think should be a working plugin. (I even retained &quot;shiba_term&quot; as the value of $type--figuring I could start customize the names after I got it working).  Installing and activating it doesn&#039;t create a new field, though--I&#039;m sure because I&#039;m doing something wrong and don&#039;t know it!

I&#039;m certain I&#039;m being a pest by replying to your lovely tutorial with the ultimate newbie question, but would much appreciate any guidance you can offer--even so much as pointing me to a good source where I can pick up the basics of writing/implementing plugins?

Please do email me if you can spare the time and patience, and I can send you what I put together (I tried to paste it in this comment but I see that doesn&#039;t go through). 

Many thanks!!!  (And what beautiful artwork throughout your site--really counteracts the stress I usually feel when grappling with code!)

:)]]></description>
			<content:encoded><![CDATA[<p>Hi Shiba,</p>
<p>I&#8217;m afraid I&#8217;ve never written a WordPress plugin, but if I understand your post correctly, it sounds like the setup for exactly what I hope to do: Beyond &#8220;Name,&#8221; &#8220;Slug,&#8221; and &#8220;Description,&#8221; there are some additional custom properties that I&#8217;d like to be able to specify for the tags on my (customized, self-hosted) WordPress site.  So I&#8217;d like to add some custom input fields to the &#8220;Add New Tag&#8221; interface.</p>
<p>In the hopes that your sample code would make just such a new custom field, I familiarized myself with the basic structure of a plugin (including registering activation function and then calling the admin-init function), and I built your sample code into what I think should be a working plugin. (I even retained &#8220;shiba_term&#8221; as the value of $type&#8211;figuring I could start customize the names after I got it working).  Installing and activating it doesn&#8217;t create a new field, though&#8211;I&#8217;m sure because I&#8217;m doing something wrong and don&#8217;t know it!</p>
<p>I&#8217;m certain I&#8217;m being a pest by replying to your lovely tutorial with the ultimate newbie question, but would much appreciate any guidance you can offer&#8211;even so much as pointing me to a good source where I can pick up the basics of writing/implementing plugins?</p>
<p>Please do email me if you can spare the time and patience, and I can send you what I put together (I tried to paste it in this comment but I see that doesn&#8217;t go through). </p>
<p>Many thanks!!!  (And what beautiful artwork throughout your site&#8211;really counteracts the stress I usually feel when grappling with code!)</p>
<p>🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Lorenzo		</title>
		<link>https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-2#comment-24049</link>

		<dc:creator><![CDATA[Lorenzo]]></dc:creator>
		<pubDate>Sat, 11 Aug 2012 11:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=5893#comment-24049</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-2#comment-23951&quot;&gt;ShibaShake&lt;/a&gt;.

I have tried to contact him but it seems to be very valuable in its responses... :(]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-2#comment-23951">ShibaShake</a>.</p>
<p>I have tried to contact him but it seems to be very valuable in its responses&#8230; 🙁</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ShibaShake		</title>
		<link>https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-2#comment-23951</link>

		<dc:creator><![CDATA[ShibaShake]]></dc:creator>
		<pubDate>Thu, 09 Aug 2012 19:28:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=5893#comment-23951</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-2#comment-23925&quot;&gt;Lorenzo&lt;/a&gt;.

Sorry, I am not familiar with the plugin. Best to contact the plugin author.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-2#comment-23925">Lorenzo</a>.</p>
<p>Sorry, I am not familiar with the plugin. Best to contact the plugin author.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Lorenzo		</title>
		<link>https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-2#comment-23925</link>

		<dc:creator><![CDATA[Lorenzo]]></dc:creator>
		<pubDate>Thu, 09 Aug 2012 09:12:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=5893#comment-23925</guid>

					<description><![CDATA[hello, is a long time that I&#039;m trying to change this plugin &quot;WP user frontend&quot; to add the Taxonomy form the front end form. My template already integrates Taxonomy so the only thing needed is just to upload data Taxonomy in areas already created from the template.
In this page http://tareq.wedevs.com/2012/04/how-to-extend-wp-user-frontend
the author of the plugin explains how to make changes in particular I thought the interesting part would be this:

:lots of code:

Can we help me???
thank you very much!!]]></description>
			<content:encoded><![CDATA[<p>hello, is a long time that I&#8217;m trying to change this plugin &#8220;WP user frontend&#8221; to add the Taxonomy form the front end form. My template already integrates Taxonomy so the only thing needed is just to upload data Taxonomy in areas already created from the template.<br />
In this page <a href="http://tareq.wedevs.com/2012/04/how-to-extend-wp-user-frontend" rel="nofollow ugc">http://tareq.wedevs.com/2012/04/how-to-extend-wp-user-frontend</a><br />
the author of the plugin explains how to make changes in particular I thought the interesting part would be this:</p>
<p>:lots of code:</p>
<p>Can we help me???<br />
thank you very much!!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jeff Rose		</title>
		<link>https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-1#comment-3439</link>

		<dc:creator><![CDATA[Jeff Rose]]></dc:creator>
		<pubDate>Sun, 27 Mar 2011 20:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=5893#comment-3439</guid>

					<description><![CDATA[Hi Folks. This is an awesome tutorial I found a day to late.

The downside here is creating that new table. In 2.9 we didn&#039;t have any other options, but now in 3.0+ you can accomplish it with a custom post type.

The code in this pastebin is an EXAMPLE and hasn&#039;t been thoroughly tested.

http://pastebin.com/zYy6PePz

Feedback is appreciated.]]></description>
			<content:encoded><![CDATA[<p>Hi Folks. This is an awesome tutorial I found a day to late.</p>
<p>The downside here is creating that new table. In 2.9 we didn&#8217;t have any other options, but now in 3.0+ you can accomplish it with a custom post type.</p>
<p>The code in this pastebin is an EXAMPLE and hasn&#8217;t been thoroughly tested.</p>
<p><a href="http://pastebin.com/zYy6PePz" rel="nofollow ugc">http://pastebin.com/zYy6PePz</a></p>
<p>Feedback is appreciated.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ShibaShake		</title>
		<link>https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-1#comment-2876</link>

		<dc:creator><![CDATA[ShibaShake]]></dc:creator>
		<pubDate>Sat, 18 Dec 2010 21:40:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=5893#comment-2876</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-1#comment-2851&quot;&gt;James Lafferty&lt;/a&gt;.

Hi James, 
Congratulations on  your new plugin release and thanks for your comment. I will definitely check your plugin out. I truly enjoy this side of the WP community - the sharing of ideas, code, and encouragement. 

Merry Christmas and Happy Holidays!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-1#comment-2851">James Lafferty</a>.</p>
<p>Hi James,<br />
Congratulations on  your new plugin release and thanks for your comment. I will definitely check your plugin out. I truly enjoy this side of the WP community &#8211; the sharing of ideas, code, and encouragement. </p>
<p>Merry Christmas and Happy Holidays!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: James Lafferty		</title>
		<link>https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-1#comment-2851</link>

		<dc:creator><![CDATA[James Lafferty]]></dc:creator>
		<pubDate>Fri, 17 Dec 2010 09:29:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.shibashake.com/wordpress-theme/?p=5893#comment-2851</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-1#comment-2822&quot;&gt;James Lafferty&lt;/a&gt;.

Just wanted to let you know that your blog definitely in part inpired me to write my Term Menu Order Plugin (released just today). The other inspiration was that I needed the functionality for a site I was working on. 

The key insight I got from your blog was looking at terms as potentially the same as posts in ways that could be surprising (i.e., the termmeta table you use here inspired me to consider simply adding a menu_order column to the terms table).

As a point of relevance to this particular thread, dbDelta didn&#039;t work for this either, as it filters out ALTER TABLE queries (looks like it only accepts CREATE TABLE, CREATE DATABASE, INSERT and UPDATE).]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://shibashake.com/wp/add-term-or-taxonomy-meta-data/comment-page-1#comment-2822">James Lafferty</a>.</p>
<p>Just wanted to let you know that your blog definitely in part inpired me to write my Term Menu Order Plugin (released just today). The other inspiration was that I needed the functionality for a site I was working on. </p>
<p>The key insight I got from your blog was looking at terms as potentially the same as posts in ways that could be surprising (i.e., the termmeta table you use here inspired me to consider simply adding a menu_order column to the terms table).</p>
<p>As a point of relevance to this particular thread, dbDelta didn&#8217;t work for this either, as it filters out ALTER TABLE queries (looks like it only accepts CREATE TABLE, CREATE DATABASE, INSERT and UPDATE).</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 0/73 objects using disk
Page Caching using disk: enhanced 
Content Delivery Network via Amazon Web Services: CloudFront: cdn.shibashake.com
Lazy Loading (feed)
Minified using disk
Database Caching using disk (Request-wide modification query)

Served from: www.shibashake.com @ 2024-12-16 22:00:55 by W3 Total Cache
-->