<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>arvindandrion.com &#187; Wordpress</title>
	<atom:link href="http://www.arvindandrion.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.arvindandrion.com</link>
	<description>Hi! My name is Arvind Andrion web designer from Philippines</description>
	<lastBuildDate>Mon, 26 Jul 2010 16:44:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>WordPress Breadcrumbs</title>
		<link>http://www.arvindandrion.com/wordpress/wordpress-breadcrumbs/</link>
		<comments>http://www.arvindandrion.com/wordpress/wordpress-breadcrumbs/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 04:57:44 +0000</pubDate>
		<dc:creator>Arvind</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.arvindandrion.com/?p=352</guid>
		<description><![CDATA[Breadcrumbs by Chris Breadcrumbs code by Chrispoole.com. This is design to use in wordpress. Thanks chris. /* * quick and dirty breadcrumb menu * initially designed for wordpress */ function CPbreadcrumbs&#40;&#41; &#123; $CPtheFullUrl = $_SERVER&#91;&#34;REQUEST_URI&#34;&#93;; $CPurlArray=explode&#40;&#34;/&#34;,$CPtheFullUrl&#41;; echo '&#38;lt;a href=&#34;/&#34;&#38;gt;Home&#38;lt;/a&#38;gt;'; while &#8230;]]></description>
			<content:encoded><![CDATA[<h3>Breadcrumbs by Chris</h3>
<p>Breadcrumbs code by <a title="chrispoole" href="http://Chrispoole.com">Chrispoole.com</a>. This is design to use in wordpress. Thanks chris.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/*
* quick and dirty breadcrumb menu
* initially designed for wordpress
*/</span>
<span style="color: #000000; font-weight: bold;">function</span> CPbreadcrumbs<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$CPtheFullUrl</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;REQUEST_URI&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$CPurlArray</span><span style="color: #339933;">=</span><span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$CPtheFullUrl</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&amp;lt;a href=&quot;/&quot;&amp;gt;Home&amp;lt;/a&amp;gt;'</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">list</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$CPj</span><span style="color: #339933;">,</span><span style="color: #000088;">$CPtext</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">each</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$CPurlArray</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$CPdir</span><span style="color: #339933;">=</span><span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$CPj</span> <span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$CPi</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$CPi</span> <span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span> <span style="color: #000088;">$CPj</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$CPdir</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">'/'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$CPurlArray</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$CPi</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$CPtext</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$CPurlArray</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$CPi</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$CPi</span><span style="color: #339933;">++;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$CPj</span> <span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span> <span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$CPurlArray</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">' &amp;amp;amp;raquo; &amp;lt;a href=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$CPdir</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;&amp;gt;'</span> <span style="color: #339933;">.</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot; &quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$CPtext</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&amp;lt;/a&amp;gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">echo</span> wp_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
CPbreadcrumbs<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<h3>Another example is adding in the function.php</h3>
<p>Posted by Jean-Baptiste Jung in <a href="http://www.catswhocode.com/blog/how-to-breadcrumb-function-for-wordpress">catswhocode.com</a>. Simply adding this php code in your function.php.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> the_breadcrumb<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>is_home<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&amp;lt;a href=&quot;'</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> get_option<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'home'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&quot;&amp;gt;'</span><span style="color: #339933;">;</span>
bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&amp;lt;/a&amp;gt; » &quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_category<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
the_category<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'title_li='</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot; » &quot;</span><span style="color: #339933;">;</span>
the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span> <span style="color: #009900;">&#40;</span>is_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">echo</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#125;</span></pre></div></div>

<p>and call it in the page or in the header</p>
<p>Very simply and easy. Cheers to both you guys.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arvindandrion.com/wordpress/wordpress-breadcrumbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirect Loop in Firefox</title>
		<link>http://www.arvindandrion.com/wordpress/redirect-loop-in-firefox/</link>
		<comments>http://www.arvindandrion.com/wordpress/redirect-loop-in-firefox/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 06:25:08 +0000</pubDate>
		<dc:creator>Arvind</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.arvindandrion.com/?p=214</guid>
		<description><![CDATA[This really freaks me out trying to figure out why I have this error in firefox.Redirect Loop Firefox has detected that the server is redirecting the request for this address in a way that will never complete. The browser has &#8230;]]></description>
			<content:encoded><![CDATA[<p>This really freaks me out trying to figure out why I have this error in firefox.<span class="notice">Redirect Loop<br />
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.<br />
The browser has stopped trying to retrieve the requested item. The site is redirecting the request in a way that will never complete.<br />
* Have you disabled or blocked cookies required by this site?<br />
* NOTE: If accepting the site&#8217;s cookies does not resolve the problem, it is likely a server configuration issue and not your computer.</span></p>
<p>I uploaded a new site, new database, new wordpress, new, new and new&#8230;.. Another question is that I can see my admin page but why I can&#8217;t login??? I&#8217;m trying to solve the problem and it took me 2 hours to figure out with the help of my friend Joni. She edit the option www in my control panel. I don&#8217;t know what it&#8217;s called but here are the options.</p>
<p><strong>How do you like the www in your URL?</strong></p>
<ol>
<li>Both http://www.domain.com/ and http://domain.com/ work.</li>
<li>Add &#8220;www.&#8221; if somebody goes to http://domain.com/</li>
<li>Remove &#8220;www.&#8221; if somebody goes to http://www.domain.com/</li>
</ol>
<p>She set it to 1, before It was set to number 2 or 3 I guess. Now yahoooo.. all is fine. Thanks to joni.</p>
<p>If you encounter this problem you now the solution. Here is another option you can try. In case this will not work.</p>
<p><a href="http://answersy.com/zchen/2008/08/05/firefox-has-detected-that-the-server-is-redirecting-the-request-for-this-address/" target="_blank">firefox-has-detected-that-the-server-is-redirecting-the-request-for-this-address</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.arvindandrion.com/wordpress/redirect-loop-in-firefox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
