<?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 for Shilling: The Blog</title>
	<atom:link href="http://www.shilling.id.au/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shilling.id.au</link>
	<description>Photos, WordPress, Tech and the Dog</description>
	<lastBuildDate>Wed, 25 Jan 2012 00:05:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Custom taxonomy drop down by Peter</title>
		<link>http://www.shilling.id.au/2011/09/custom-taxonomy-drop-down/comment-page-1/#comment-369</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Wed, 25 Jan 2012 00:05:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.shilling.id.au/?p=716#comment-369</guid>
		<description>Hi Petra,

Just saw your comments, and happily the last one says you got it working - well done!

Peter</description>
		<content:encoded><![CDATA[<p>Hi Petra,</p>
<p>Just saw your comments, and happily the last one says you got it working &#8211; well done!</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom taxonomy drop down by Petra</title>
		<link>http://www.shilling.id.au/2011/09/custom-taxonomy-drop-down/comment-page-1/#comment-368</link>
		<dc:creator>Petra</dc:creator>
		<pubDate>Tue, 24 Jan 2012 15:38:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.shilling.id.au/?p=716#comment-368</guid>
		<description>Good news! i managed to solve the problem. taxonomy name wasn&#039;t really correct and the way it was registered.
http://codex.wordpress.org/Function_Reference/register_taxonomy</description>
		<content:encoded><![CDATA[<p>Good news! i managed to solve the problem. taxonomy name wasn&#8217;t really correct and the way it was registered.<br />
<a href="http://codex.wordpress.org/Function_Reference/register_taxonomy" rel="nofollow">http://codex.wordpress.org/Function_Reference/register_taxonomy</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom taxonomy drop down by Petra</title>
		<link>http://www.shilling.id.au/2011/09/custom-taxonomy-drop-down/comment-page-1/#comment-367</link>
		<dc:creator>Petra</dc:creator>
		<pubDate>Tue, 24 Jan 2012 09:45:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.shilling.id.au/?p=716#comment-367</guid>
		<description>For some reason it strips out part of my code. Here it is on another website:

http://codepad.org/A5saoAgb</description>
		<content:encoded><![CDATA[<p>For some reason it strips out part of my code. Here it is on another website:</p>
<p><a href="http://codepad.org/A5saoAgb" rel="nofollow">http://codepad.org/A5saoAgb</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom taxonomy drop down by Petra</title>
		<link>http://www.shilling.id.au/2011/09/custom-taxonomy-drop-down/comment-page-1/#comment-366</link>
		<dc:creator>Petra</dc:creator>
		<pubDate>Tue, 24 Jan 2012 09:35:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.shilling.id.au/?p=716#comment-366</guid>
		<description>Sorry the code for the dropdown is this (didn&#039;t paste it correctly):
&lt;form action=&quot;&quot; method=&quot;get&quot;&gt;
&#039;name&#039;,&#039;hide_empty&#039;=&gt;true);
$select = get_terms_dropdown($taxonomies, $args);
 $select = preg_replace(&quot;#]*)&gt;#&quot;, &quot;&quot;, $select);
echo $select;
?&gt;
    
    </description>
		<content:encoded><![CDATA[<p>Sorry the code for the dropdown is this (didn&#8217;t paste it correctly):<br />
&lt;form action=&quot;&#8221; method=&#8221;get&#8221;&gt;<br />
&#8216;name&#8217;,'hide_empty&#8217;=&gt;true);<br />
$select = get_terms_dropdown($taxonomies, $args);<br />
 $select = preg_replace(&#8220;#]*)&gt;#&#8221;, &#8220;&#8221;, $select);<br />
echo $select;<br />
?&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom taxonomy drop down by Petra</title>
		<link>http://www.shilling.id.au/2011/09/custom-taxonomy-drop-down/comment-page-1/#comment-365</link>
		<dc:creator>Petra</dc:creator>
		<pubDate>Tue, 24 Jan 2012 09:31:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.shilling.id.au/?p=716#comment-365</guid>
		<description>Thanks for your quick reply Peter!
In my functions.php I have this: 

function get_terms_dropdown($taxonomies, $args){
    $myterms = get_terms($taxonomies, $args);
    $output =&quot;&quot;;
    $output .=&quot;Please select a subject&quot;;
    foreach($myterms as $term){
        $root_url = get_bloginfo(&#039;url&#039;);
        $term_taxonomy=$term-&gt;taxonomy;
        $term_slug=$term-&gt;slug;
        $term_name =$term-&gt;name;
        $link = $term_slug;
        $output .=&quot;&quot;.$term_name.&quot;&quot;;
    }
    $output .=&quot;&quot;;
return $output;
}

And in my archives-video.php I have this:
&lt;form action=&quot;&quot; method=&quot;get&quot;&gt;

&#039;name&#039;,&#039;hide_empty&#039;=&gt;true);
$select = get_terms_dropdown($taxonomies, $args);
 
$select = preg_replace(&quot;#]*)&gt;#&quot;, &quot;&quot;, $select);
echo $select;
?&gt;
    
    


I put the name of my taxonomy here -&gt; $taxonomies = array(&#039;subjects&#039;);

Where I am registering my taxonomy I have this code:

//subject
	$subjectlabels = array(
    &#039;name&#039; =&gt; _x( &#039;Subjects&#039;, &#039;taxonomy general name&#039; ),
    &#039;singular_name&#039; =&gt; _x( &#039;Subject&#039;, &#039;taxonomy singular name&#039; ),
    &#039;search_items&#039; =&gt;  __( &#039;Search Subjects&#039; ),
    &#039;all_items&#039; =&gt; __( &#039;All Subjects&#039; ),
    &#039;parent_item&#039; =&gt; __( &#039;Parent Subject&#039; ),
    &#039;parent_item_colon&#039; =&gt; __( &#039;Parent Subject:&#039; ),
    &#039;edit_item&#039; =&gt; __( &#039;Edit Subject&#039; ), 
    &#039;update_item&#039; =&gt; __( &#039;Update Subject&#039; ),
    &#039;add_new_item&#039; =&gt; __( &#039;Add New Subject&#039; ),
    &#039;new_item_name&#039; =&gt; __( &#039;New Subject Name&#039; ),
    &#039;menu_name&#039; =&gt; __( &#039;Subjects&#039; ),
  ); 	
	register_taxonomy(&#039;subjects&#039;, &#039;videos&#039;, array (
	&#039;hierarchical&#039; =&gt; true,
	&#039;labels&#039; =&gt; $subjectlabels,
	&#039;show-ui&#039; =&gt; true,
	&#039;query_var&#039; =&gt; true,
	&#039;rewrite&#039; =&gt; array (&#039;slug&#039; =&gt; &#039;subject&#039;)
	));

I wonder what I am missing?</description>
		<content:encoded><![CDATA[<p>Thanks for your quick reply Peter!<br />
In my functions.php I have this: </p>
<p>function get_terms_dropdown($taxonomies, $args){<br />
    $myterms = get_terms($taxonomies, $args);<br />
    $output =&#8221;";<br />
    $output .=&#8221;Please select a subject&#8221;;<br />
    foreach($myterms as $term){<br />
        $root_url = get_bloginfo(&#8216;url&#8217;);<br />
        $term_taxonomy=$term-&gt;taxonomy;<br />
        $term_slug=$term-&gt;slug;<br />
        $term_name =$term-&gt;name;<br />
        $link = $term_slug;<br />
        $output .=&#8221;".$term_name.&#8221;";<br />
    }<br />
    $output .=&#8221;";<br />
return $output;<br />
}</p>
<p>And in my archives-video.php I have this:<br />
&lt;form action=&quot;&#8221; method=&#8221;get&#8221;&gt;</p>
<p>&#8216;name&#8217;,'hide_empty&#8217;=&gt;true);<br />
$select = get_terms_dropdown($taxonomies, $args);</p>
<p>$select = preg_replace(&#8220;#]*)&gt;#&#8221;, &#8220;&#8221;, $select);<br />
echo $select;<br />
?&gt;</p>
<p>I put the name of my taxonomy here -&gt; $taxonomies = array(&#8216;subjects&#8217;);</p>
<p>Where I am registering my taxonomy I have this code:</p>
<p>//subject<br />
	$subjectlabels = array(<br />
    &#8216;name&#8217; =&gt; _x( &#8216;Subjects&#8217;, &#8216;taxonomy general name&#8217; ),<br />
    &#8216;singular_name&#8217; =&gt; _x( &#8216;Subject&#8217;, &#8216;taxonomy singular name&#8217; ),<br />
    &#8216;search_items&#8217; =&gt;  __( &#8216;Search Subjects&#8217; ),<br />
    &#8216;all_items&#8217; =&gt; __( &#8216;All Subjects&#8217; ),<br />
    &#8216;parent_item&#8217; =&gt; __( &#8216;Parent Subject&#8217; ),<br />
    &#8216;parent_item_colon&#8217; =&gt; __( &#8216;Parent Subject:&#8217; ),<br />
    &#8216;edit_item&#8217; =&gt; __( &#8216;Edit Subject&#8217; ),<br />
    &#8216;update_item&#8217; =&gt; __( &#8216;Update Subject&#8217; ),<br />
    &#8216;add_new_item&#8217; =&gt; __( &#8216;Add New Subject&#8217; ),<br />
    &#8216;new_item_name&#8217; =&gt; __( &#8216;New Subject Name&#8217; ),<br />
    &#8216;menu_name&#8217; =&gt; __( &#8216;Subjects&#8217; ),<br />
  );<br />
	register_taxonomy(&#8216;subjects&#8217;, &#8216;videos&#8217;, array (<br />
	&#8216;hierarchical&#8217; =&gt; true,<br />
	&#8216;labels&#8217; =&gt; $subjectlabels,<br />
	&#8216;show-ui&#8217; =&gt; true,<br />
	&#8216;query_var&#8217; =&gt; true,<br />
	&#8216;rewrite&#8217; =&gt; array (&#8216;slug&#8217; =&gt; &#8216;subject&#8217;)<br />
	));</p>
<p>I wonder what I am missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom taxonomy drop down by Peter</title>
		<link>http://www.shilling.id.au/2011/09/custom-taxonomy-drop-down/comment-page-1/#comment-364</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 23 Jan 2012 22:32:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.shilling.id.au/?p=716#comment-364</guid>
		<description>Hi Petra, did you put the function &quot;get_terms_dropdown($taxonomies, $args)&quot; into your site as well? Probably in the functions.php file ??

Also ensure that you have PHP errors turned on so that you see any problem when you execute the form.

Let me know how you go

Peter</description>
		<content:encoded><![CDATA[<p>Hi Petra, did you put the function &#8220;get_terms_dropdown($taxonomies, $args)&#8221; into your site as well? Probably in the functions.php file ??</p>
<p>Also ensure that you have PHP errors turned on so that you see any problem when you execute the form.</p>
<p>Let me know how you go</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom taxonomy drop down by Petra</title>
		<link>http://www.shilling.id.au/2011/09/custom-taxonomy-drop-down/comment-page-1/#comment-363</link>
		<dc:creator>Petra</dc:creator>
		<pubDate>Mon, 23 Jan 2012 18:42:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.shilling.id.au/?p=716#comment-363</guid>
		<description>I tried your code, but I don&#039;t know why doesn&#039;t work for me. I changed the name of taxonomy to my taxonomy, which is &#039;subjects&#039;, but I just get a dropdown with nothing in it. Any ideas?</description>
		<content:encoded><![CDATA[<p>I tried your code, but I don&#8217;t know why doesn&#8217;t work for me. I changed the name of taxonomy to my taxonomy, which is &#8216;subjects&#8217;, but I just get a dropdown with nothing in it. Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress multisite on Rackspace Cloud Sites by Peter</title>
		<link>http://www.shilling.id.au/2011/09/wordpress-multisite-on-rackspace-cloud-sites/comment-page-1/#comment-359</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 23 Jan 2012 00:00:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.shilling.id.au/?p=767#comment-359</guid>
		<description>Ashish,

You did not mention the WPMU plugin, have you got that installed?
Also perhaps you&#039;ve done this but it&#039;s not obvious from your question.. You need to setup the domains that are going to point the multisite as forwarding domains on the rackspace control panel - have you done that?

Peter</description>
		<content:encoded><![CDATA[<p>Ashish,</p>
<p>You did not mention the WPMU plugin, have you got that installed?<br />
Also perhaps you&#8217;ve done this but it&#8217;s not obvious from your question.. You need to setup the domains that are going to point the multisite as forwarding domains on the rackspace control panel &#8211; have you done that?</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress multisite on Rackspace Cloud Sites by Ashish</title>
		<link>http://www.shilling.id.au/2011/09/wordpress-multisite-on-rackspace-cloud-sites/comment-page-1/#comment-358</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Sun, 22 Jan 2012 08:12:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.shilling.id.au/?p=767#comment-358</guid>
		<description>Hi Peter,
Thank you so much for guiding all the readers.
Please see what I have been trying to do: (we are hosting on rackspace cloud sites)
First I installed wp multisite with sub-domain option and everything seemed to go well until I click on dashboard of the newly set site. and it did not work any way. I even did wildcard setup for sub-domain in my dns setup. 
Anyway after searching I found your blog and redone all the stuff again with a sub-directory setup. Its working well till domain mapping stage. you can see the main site: http://ixa.co.in/ and the another site : http://ixa.co.in/ixaweb/
Now I have a domain http://ixaweb.com/ and want this to point to http://ixa.co.in/ixaweb/
for this I have setup the domain http://ixaweb.com/ in the same user http://ixa.co.in/

Note also that we are using our own dns and pointed our domains to the IPs that have been assigned in Rackspace cloud on setup of domains. ( when you say.....Sure the catch here is that you have to have the DNS pointing to their DNS servers but if you can live with that, it works....does that mean we need to use rackspace dns altogether?

One more thing we are using wp 3.3.1 which has a different interface on dashboard&gt;settings&gt;domains:
Its asks for 
Site ID	???
Domain	 ???
Primary (check box)
I could not find any site ID even in the list of sites or in its edit form.

When I fill site ID with site name (http://ixa.co.in/ixaweb/) and the domain name (http://ixaweb.com/) and tick mark the check box, it simply does not do anything accept refreshing the page without any error/saved msg.

Please help me do this setup. Thanks in advance!!!
Ashish</description>
		<content:encoded><![CDATA[<p>Hi Peter,<br />
Thank you so much for guiding all the readers.<br />
Please see what I have been trying to do: (we are hosting on rackspace cloud sites)<br />
First I installed wp multisite with sub-domain option and everything seemed to go well until I click on dashboard of the newly set site. and it did not work any way. I even did wildcard setup for sub-domain in my dns setup.<br />
Anyway after searching I found your blog and redone all the stuff again with a sub-directory setup. Its working well till domain mapping stage. you can see the main site: <a href="http://ixa.co.in/" rel="nofollow">http://ixa.co.in/</a> and the another site : <a href="http://ixa.co.in/ixaweb/" rel="nofollow">http://ixa.co.in/ixaweb/</a><br />
Now I have a domain <a href="http://ixaweb.com/" rel="nofollow">http://ixaweb.com/</a> and want this to point to <a href="http://ixa.co.in/ixaweb/" rel="nofollow">http://ixa.co.in/ixaweb/</a><br />
for this I have setup the domain <a href="http://ixaweb.com/" rel="nofollow">http://ixaweb.com/</a> in the same user <a href="http://ixa.co.in/" rel="nofollow">http://ixa.co.in/</a></p>
<p>Note also that we are using our own dns and pointed our domains to the IPs that have been assigned in Rackspace cloud on setup of domains. ( when you say&#8230;..Sure the catch here is that you have to have the DNS pointing to their DNS servers but if you can live with that, it works&#8230;.does that mean we need to use rackspace dns altogether?</p>
<p>One more thing we are using wp 3.3.1 which has a different interface on dashboard&gt;settings&gt;domains:<br />
Its asks for<br />
Site ID	???<br />
Domain	 ???<br />
Primary (check box)<br />
I could not find any site ID even in the list of sites or in its edit form.</p>
<p>When I fill site ID with site name (<a href="http://ixa.co.in/ixaweb/" rel="nofollow">http://ixa.co.in/ixaweb/</a>) and the domain name (<a href="http://ixaweb.com/" rel="nofollow">http://ixaweb.com/</a>) and tick mark the check box, it simply does not do anything accept refreshing the page without any error/saved msg.</p>
<p>Please help me do this setup. Thanks in advance!!!<br />
Ashish</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get Gravity Forms and Zoho CRM to play by Evan Caulfield</title>
		<link>http://www.shilling.id.au/2011/04/how-to-get-gravity-forms-and-zoho-crm-to-play/comment-page-1/#comment-353</link>
		<dc:creator>Evan Caulfield</dc:creator>
		<pubDate>Fri, 06 Jan 2012 17:26:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.shilling.id.au/?p=576#comment-353</guid>
		<description>Thanks! :)</description>
		<content:encoded><![CDATA[<p>Thanks! <img src='http://www.shilling.id.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

