<?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>beThinker Concepts - Knowledge in many different ways &#187; WordPress</title>
	<atom:link href="http://www.bethinkerconcepts.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bethinkerconcepts.com</link>
	<description>beThinkerConcepts.com is a variaty of tutorials that help improve those beginner in web development.</description>
	<lastBuildDate>Mon, 29 Mar 2010 14:17:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Excluding Pages from List in WordPress</title>
		<link>http://www.bethinkerconcepts.com/2009/06/excluding-pages-from-list-in-wordpress/</link>
		<comments>http://www.bethinkerconcepts.com/2009/06/excluding-pages-from-list-in-wordpress/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 08:25:49 +0000</pubDate>
		<dc:creator>beThinker</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Excluding Pages]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[Pages]]></category>

		<guid isPermaLink="false">http://www.bethinkerconcepts.com/?p=26</guid>
		<description><![CDATA[In this tutorial will show you how to hide a page or post in a simple way without using plugins and I&#8217;m sure that there are lots of plugins out there that exists.
There may be a time when you are adding pages or post to your blog that you don&#8217;t what that page or post [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-18" title="WordPress" src="http://www.bethinkerconcepts.com/wp-content/uploads/2009/06/wordpress-150x150.png" alt="WordPress" width="150" height="150" />In this tutorial will show you how to hide a page or post in a simple way without using plugins and I&#8217;m sure that there are lots of plugins out there that exists.</p>
<p>There may be a time when you are adding pages or post to your blog that you don&#8217;t what that page or post to show up in main navigation or in a list of post. I have a thank you page and I only want to show it up after the user click the submit button in my register page. So lets get started.<br />
<span id="more-26"></span><br />
Make sure you have FTP access to your site then find your blog&#8217;s current theme directory (domain/wp-content/themes/nameOfTheme). Look for the header.php open this file in your favorite text editor.</p>
<p>For pages try to look find this code:</p>
<div class="codecolorer-container xml default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="xml codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ul<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp;<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_list_pages<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'title_li='</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span></span><br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ul<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></div></td></tr></tbody></table></div>
<p><strong></strong><br />
Now will use the <strong>exclude</strong> parameter to hide certain Pages from the list to be generated by wp_list_pages.</p>
<p>First thing we should know the ID number for a certain page. And how we should know this, go into your WordPress Administrator panel, click Pages, then drag the mouse over to the page that you want to hide and see on the status bar the ID number for that page. For example the Thank you page and I have an id=20. So the code should look like this now:<br />
<strong></strong></p>
<div class="codecolorer-container xml default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="xml codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ul<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_list_pages<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'title_li=&amp;exclude=120'</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span></span><br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ul<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></div></td></tr></tbody></table></div>
<p><strong></strong><br />
Notice we have extra code which is <strong>tittle_li</strong> and <strong>exclude</strong>. Now <strong>tittle_li</strong> is the list of pages and the <strong>exclude</strong> is the one who hide a certain page/s. Even though the page is hidden you can still access it using the page link. For multiple pages to be excluded just used comma to separate each ID numbers. Don&#8217;t for get the &amp; sign to separate the tittle_li and exclude.</p>
<p>If you still don&#8217;t get it please don&#8217;t hesitate to leave a comment or send me an email and I&#8217;ll do what I can to get things working.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bethinkerconcepts.com/2009/06/excluding-pages-from-list-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrating WordPress in a Static Page</title>
		<link>http://www.bethinkerconcepts.com/2009/06/integrating-wordpress-in-a-static-page/</link>
		<comments>http://www.bethinkerconcepts.com/2009/06/integrating-wordpress-in-a-static-page/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 08:49:52 +0000</pubDate>
		<dc:creator>beThinker</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Integrate]]></category>
		<category><![CDATA[Static Page]]></category>

		<guid isPermaLink="false">http://www.bethinkerconcepts.com/?p=3</guid>
		<description><![CDATA[To incorporate or integrate WordPress with your static front page. You can include the HEADER, SIDEBAR, FOOTER, and even a mini-version of the Wordpress Loop.

How to include a Header
To include the header from your WordPress Theme you must add code below to the top of the page and using the folder path name you installed [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img class="alignleft size-thumbnail wp-image-18" title="WordPress" src="http://www.bethinkerconcepts.com/wp-content/uploads/2009/06/wordpress-150x150.png" alt="WordPress" width="150" height="150" />To incorporate or integrate WordPress with your static front page. You can include the HEADER, SIDEBAR, FOOTER, and even a mini-version of the Wordpress Loop.</p>
<p style="text-align: left;">
<p style="text-align: left;"><strong>How to include a Header</strong></p>
<p style="text-align: left;">To include the header from your WordPress Theme you must add code below to the top of the page and using the folder path name you installed WordPress into.</p>
<p style="text-align: left;"><span id="more-3"></span></p>
<p style="text-align: left;">Here is the code:</p>
<div class="codecolorer-container xml default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br /></div></td><td><div class="xml codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?php</span></span><br />
<span style="color: #009900;">define<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'WP_USE_THEMES'</span>, false<span style="color: #66cc66;">&#41;</span>;</span><br />
<span style="color: #009900;">require<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'./wordpress/wp-blog-header.php'</span><span style="color: #66cc66;">&#41;</span>;</span><br />
<span style="color: #009900;">get_header<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</span><br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">?&gt;</span></span></div></td></tr></tbody></table></div>
<p>The purpose of requiring or including wp-blog-header.php is to let you use of any WordPress function or <a href="http://codex.wordpress.org/Template_Tags" target="_blank">template tag</a>.</p>
<p>Note: In rare cases declaring the WP_USE_THEMES constant to false may produce non-CSS formatted page output.</p>
<p><strong>How to Include The Sidebar or Footer</strong><br />
To add the sidebar and/or footer from your WordPress Theme, include one or both of the following code:</p>
<p>include this at the right container of your WordPress Theme:</p>
<div class="codecolorer-container xml default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="xml codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> get_sidebar<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span></span></div></td></tr></tbody></table></div>
<p>include this at the bottom of the page:</p>
<div class="codecolorer-container xml default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="xml codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> get_footer<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span></span></div></td></tr></tbody></table></div>
<p>I hope this tutorial is helpful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bethinkerconcepts.com/2009/06/integrating-wordpress-in-a-static-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
