<?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>The BLOG of Jerry Hartzell &#187; Word Press</title>
	<atom:link href="http://www.jerryhartzell.com/category/word-press/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jerryhartzell.com</link>
	<description>Photography, Technology, Woodcarving and much more</description>
	<lastBuildDate>Fri, 26 Aug 2011 15:33:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress 3.0 Upgrade!</title>
		<link>http://www.jerryhartzell.com/word-press/wordpress-3-0-upgrade/</link>
		<comments>http://www.jerryhartzell.com/word-press/wordpress-3-0-upgrade/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 13:34:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Word Press]]></category>

		<guid isPermaLink="false">http://www.jerryhartzell.com/?p=212</guid>
		<description><![CDATA[WordPress has recently release version 3.0. My experience in upgrading from WordPress 2.92 to verson 3.0 was painless. I used the automatic update and within 60 seconds it had successfully completed. I have reviewed my sites and as far as I can see there are no issues with site graphics or content layout. Post your [...]]]></description>
			<content:encoded><![CDATA[<h1>WordPress has recently release version 3.0.</h1>
<p><a href="http://www.jerryhartzell.com/wp-content/uploads/2010/06/wordpress2.jpg"><img class="imgalignleft" title="WordPress Logo" src="http://www.jerryhartzell.com/wp-content/uploads/2010/06/wordpress2-300x300.jpg" alt="" width="147" height="147" /></a>My experience in upgrading from WordPress 2.92 to verson 3.0 was painless. I used the automatic update and within 60 seconds it had successfully completed.<br />
I have reviewed my sites and as far as I can see there are no issues with site graphics or content layout.</p>
<p>Post your experiences with upgrading to WordPress 3.0 here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jerryhartzell.com/word-press/wordpress-3-0-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Word Press Child Page menu</title>
		<link>http://www.jerryhartzell.com/word-press/word-press-child-page-menu/</link>
		<comments>http://www.jerryhartzell.com/word-press/word-press-child-page-menu/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 19:15:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Word Press]]></category>

		<guid isPermaLink="false">http://www.jerryhartzell.com/?p=122</guid>
		<description><![CDATA[Creating a sidebar menu using Child Pages in WordPress Trying to find the correct syntax to display a sidebar menu that shows all the &#8220;Child Pages&#8221; along with a custom title can be challenging. Syntax &#60;li&#62; &#60;?php wp_list_pages(&#8216;child_of=10&#38;title_li=&#60;h2&#62;&#8217; . __(&#8216;Your Custom Menu Title Here&#8217;) . &#8216;&#60;/h2&#62;&#8217;); ?&#62;&#60;/li&#62; Breaking down the code &#60;li&#62; &#60;/li&#62; This is [...]]]></description>
			<content:encoded><![CDATA[<h1>Creating a sidebar menu using Child Pages in WordPress</h1>
<p>Trying to find the correct syntax to display a sidebar menu that shows all the &#8220;Child Pages&#8221; along with a custom title can be challenging.</p>
<h2>Syntax</h2>
<p>&lt;li&gt; <span style="color: #ff0000;">&lt;?php</span> wp_list_pages(<span style="color: #ff0000;">&#8216;child_of=10&amp;title_li=&lt;h2&gt;&#8217;</span> . __(<span style="color: #ff0000;">&#8216;Your Custom Menu Title Here&#8217;</span>) . <span style="color: #ff0000;">&#8216;&lt;/h2&gt;&#8217;</span>); <span style="color: #ff0000;">?&gt;</span>&lt;/li&gt;</p>
<h3>Breaking down the code</h3>
<p><span id="more-122"></span><strong>&lt;li&gt; &lt;/li&gt;</strong> This is the beginning and ending HTML tags for a &#8220;List Item&#8221;. The list item tag is used for all menu items.</p>
<p><strong>&lt;?php&gt; &lt;?&gt;</strong> This is the starting and ending tags of a PHP statement.</p>
<p><strong>wp_list-pages</strong> This is the predefined WordPress function that brings queries the pages.</p>
<p><strong>( )</strong> Everyting between the brackets holds the arguments for the WordPress function. In this example we are using two arguments that are sperated by the &#8220;&amp;&#8221; symbol.</p>
<p><strong>child_of=10</strong> This is the first argument for our wordpress function. The parameter &#8220;child_of&#8221; displays the child and grandchildren pages of a single Page only. The number following the &#8220;=&#8221; sign (Shown with the number 10) represents the Parent Page ID. <em>Note: The parameter &#8220;child_of&#8221; does not display the Parent Page.</em></p>
<p><strong>&amp;</strong> This is the PHP code to join arguments.</p>
<p><strong>title_li=&lt;h2&gt;&#8217; . __(&#8216;Your Custom Menu Title Here&#8217;) </strong>This is the prameter used to display a custom heading for your child page menu. I will break this code down further.</p>
<p><strong>title_li=</strong> This is the second argument for our wordpress function which sets the title for our page menu.</p>
<p><strong>&lt;h2&gt; </strong>sets the font style for the menu. The ending tag happens at the end of this argument.</p>
<p><strong>. __(&#8216;Your Custom Menu Title Here&#8217;) </strong>Sets the text of the Page menu. The default is <tt>'__('Pages')'</tt>, which displays &#8220;Pages&#8221;. Simply edit the text between the single quotation makes.</p>
<p><strong>. &#8216;&lt;/h2&gt;&#8217;) </strong>This ends our statement and also closes the &lt;h2&gt; header tag from earlier.</p>
<h2>Child Menu Summary</h2>
<p>Once you look at the different elements of this statement if becomes quite easy to understant that is happening in each section. For a complete listing of please visit the <a href="http://codex.wordpress.org/Template_Tags/wp_list_pages" target="_blank">WordPress.org wp_list-pages</a> site.</p>
<p>Thank you for visiting my site and let me know if you found this to be useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jerryhartzell.com/word-press/word-press-child-page-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

