<?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>Kevin Pajak - Interactive Web Developer/Designer - BLOG &#187; WordPress</title>
	<atom:link href="http://www.kevinpajak.com/blog/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kevinpajak.com/blog</link>
	<description>Creative visionary, digital entrepreneur.</description>
	<lastBuildDate>Tue, 13 Apr 2010 02:01:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to exclude pages/categories from navigation listings on WordPress</title>
		<link>http://www.kevinpajak.com/blog/2009/11/10/how-to-exclude-pages-categories-from-navigation-listings-on-wordpress/</link>
		<comments>http://www.kevinpajak.com/blog/2009/11/10/how-to-exclude-pages-categories-from-navigation-listings-on-wordpress/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 06:55:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Word Press]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.kevinpajak.com/blog/?p=276</guid>
		<description><![CDATA[OK, I am writing this post to share a little bit of info that I discovered last night, while doing some WordPress editing work for a client of mine. He had several categories and pages that needed to be included on his site, but he wanted five pages to be linked in the footer that [...]]]></description>
			<content:encoded><![CDATA[<p>OK, I am writing this post to share a little bit of info that I discovered last night, while doing some WordPress editing work for a client of mine. He had several categories and pages that needed to be included on his site, but he wanted five pages to be linked in the footer that obviously we didn&#8217;t want to re-list in the main nav listing that appeared in the theme&#8217;s Header. After doing a bit of searching online, I did discover this post in the WP dev forums:</p>
<p>http://codex.wordpress.org/Template_Tags/wp_list_pages#Exclude_Pages_from_List</p>
<p>This covers the basics of how to exclude pages from your navbar listings, but there&#8217;s only one problem (and at first I was freaking out over this): they indicate to exclude by <b>page ID</b>, but the newer versions of WordPress don&#8217;t use a page ID, SO, here is what you do:</p>
<p>1) Go to &#8216;Pages > Edit&#8217;<br />
2) Mouseover the page you will be wanting to exclude from your list, and see the URL that appears (for example: http://www.kevinpajak.com/blog/wp-admin/page.php?action=edit&#038;post=2). You notice that you will actually see the number listed as a <b>post!</b><br />
3) Grab this number for each page you need to exclude, and plop it into this code in your header/sidebar/navbar page code:</p>
<p>For example:<br />
<font size="+1">&lt;?php wp_list_pages(&#8216;exclude=16,18,20,22&#8242;); ?&gt;</font></p>
<p>Voila! You should be all set (Oh, and if your wp_list_pages function happens to have additional code, you will need to make sure you include the ampersand character with it (&#038;).</p>
<p>Ex:<br />
<font size="+1">&lt;?php wp_list_pages(&#8216;title_li=&#038;exclude=96,98,100,102,104&#8242;); ?&gt;</font></p>
<p>Last of all, there is also a plugin you might want to try, called <a href="http://wordpress.org/extend/plugins/exclude-pages/" target="_blank">&#8216;Exclude Pages&#8217;</a> that should take care of this for you automatically if you prefer. I haven&#8217;t tried it yet, but definitely worth a look <img src='http://www.kevinpajak.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>Have fun WordPressers, good luck, and please feel free to share your feedback anytime! <img src='http://www.kevinpajak.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>PS: To exclude <b>categories</b> from your navigation listings, follow the same procedure:</p>
<p>1) Take a look at your overall category list (&#8216;Edit > Categories&#8217;),<br />
2) This time find the CAT ID (Ex: http://www.kevinpajak.com/blog/wp-admin/categories.php?action=edit&#038;cat_ID=3)<br />
3) Note that number(s) and enter them in the line of code that reads, for example:<br />
<font size="+1">&lt;?php wp_list_categories(&#8216;exclude=6,8,21&#8242;); ?&gt;</font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinpajak.com/blog/2009/11/10/how-to-exclude-pages-categories-from-navigation-listings-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add &#8220;Edit Post&#8221; capability to Atahualpa WP theme</title>
		<link>http://www.kevinpajak.com/blog/2009/09/14/add-edit-post-capability-to-atahualpa-wp-theme/</link>
		<comments>http://www.kevinpajak.com/blog/2009/09/14/add-edit-post-capability-to-atahualpa-wp-theme/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 19:56:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[To-Do]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://www.kevinpajak.com/blog/?p=248</guid>
		<description><![CDATA[The Atahualpa Theme by BytesForAll is a great, and so, so highly customizable WordPress theme, however something I have been meaning to do for a while is fix it to add in the capability to &#8220;edit a post&#8221; for authors and admins (this MAY be fixed in their latest version though, not sure). I may [...]]]></description>
			<content:encoded><![CDATA[<p>The <A HREF="http://wordpress.org/extend/themes/atahualpa?TB_iframe=true&#038;width=1024&#038;height=800" target="_blank">Atahualpa Theme</A> by BytesForAll is a great, and so, so highly customizable WordPress theme, however something I have been meaning to do for a while is fix it to add in the capability to &#8220;edit a post&#8221; for authors and admins (this MAY be fixed in their latest version though, not sure). I may post the alteration code at some point (anyone who wants it after I do it, feel free to drop me a line).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinpajak.com/blog/2009/09/14/add-edit-post-capability-to-atahualpa-wp-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quote Tweet Test</title>
		<link>http://www.kevinpajak.com/blog/2009/09/11/quote-tweet-test/</link>
		<comments>http://www.kevinpajak.com/blog/2009/09/11/quote-tweet-test/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 05:15:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web Dev/Design]]></category>
		<category><![CDATA[Word Press]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.kevinpajak.com/blog/?p=225</guid>
		<description><![CDATA[This rockin&#8217; new WordPress plugin from @TCorp allows you to add Twitter-style, bubble-enclosed quotes of favorite tweets from any Twitter user (grabbed from the Twitter XML timeline file) to your WordPress blog. Check it out!]]></description>
			<content:encoded><![CDATA[<p>This <A HREF="http://wordpress.org/extend/plugins/wp-quote-tweets/" target="_blank">rockin&#8217; new WordPress plugin</A> from <A HREF="http://twitter.com/TCorp" target="_blank">@TCorp</A> allows you to add Twitter-style, bubble-enclosed quotes of favorite tweets from any Twitter user (grabbed from the Twitter XML timeline file) to your WordPress blog. Check it out!</p>
<div class="quotedtweet" id="tw2220563803" style="background-color:#eef;padding:5px;margin-bottom:5px">
	<div class="tw_user-info" style="padding:10px 10px 5px 0;float:left;text-align:center;width:100px;">
		<div class="tw_thumb">
			<a href="http://twitter.com/TCorp" title="Tanin Ehrami" class="quoting_pic" rel="external"><img src="http://img.tweetimag.es/i/TCorp_n" alt="TCorp" /></a>
		</div>
		<div class="tw_screen-name">
			<em><a href="http://twitter.com/TCorp" title="Twitter page : Tanin Ehrami" rel="external">TCorp</a></em>
		</div>
		<div class="tw_full-name">
			<strong>(Tanin Ehrami)</strong>
		</div>
	</div>
	<div class="tw_content" style="float: left; width: 500px; font: 20pt Georgia, Verdana, sans-serif; font-style: normal;">
		<div class="tw_entry-content">
				WP Quote Tweets is available for download NOW! (Allows you to quote tweets using a shortcode) <a href="http://tanin.nl/CfZP" rel="external">http://tanin.nl/CfZP</a> <a href='http://search.twitter.com/search?q=wordpress' rel='external'>#wordpress</a> <a href='http://search.twitter.com/search?q=wp' rel='external'>#wp</a>

		</div>
	</div>
	<div style="clear: both; text-align: left;font-style:italic;margin-left:110px">
		<p class="tw_meta tw_entry-meta" style="margin: 0;padding-top:5px">
			<small>
				<span>On <a href="http://twitter.com/TCorp/status/2220563803" rel="external">18-6-2009 10:24:23</a></span> 
				<span>from web</span> 
				<span></span>
			</small>
		</p>
	</div>
</div><BR><div class="quotedtweet" id="tw3725392944" style="background-color:#eef;padding:5px;margin-bottom:5px">
	<div class="tw_user-info" style="padding:10px 10px 5px 0;float:left;text-align:center;width:100px;">
		<div class="tw_thumb">
			<a href="http://twitter.com/kevinpajak" title="Kevin Pajak" class="quoting_pic" rel="external"><img src="http://img.tweetimag.es/i/kevinpajak_n" alt="kevinpajak" /></a>
		</div>
		<div class="tw_screen-name">
			<em><a href="http://twitter.com/kevinpajak" title="Twitter page : Kevin Pajak" rel="external">kevinpajak</a></em>
		</div>
		<div class="tw_full-name">
			<strong>(Kevin Pajak)</strong>
		</div>
	</div>
	<div class="tw_content" style="float: left; width: 500px; font: 20pt Georgia, Verdana, sans-serif; font-style: normal;">
		<div class="tw_entry-content">
				"Best ways to display twitter updates" (from <a href="http://www.twitter.com/gopalraju" rel="external">@gopalraju</a>): <a href="http://bit.ly/o1WCn
" rel="external">http://bit.ly/o1WCn
</a> ;)

		</div>
	</div>
	<div style="clear: both; text-align: left;font-style:italic;margin-left:110px">
		<p class="tw_meta tw_entry-meta" style="margin: 0;padding-top:5px">
			<small>
				<span>On <a href="http://twitter.com/kevinpajak/status/3725392944" rel="external">3-9-2009 02:41:51</a></span> 
				<span>from web</span> 
				<span></span>
			</small>
		</p>
	</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinpajak.com/blog/2009/09/11/quote-tweet-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
