<?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>Blogfreakz - Web Design and Web Development resources &#187; php</title>
	<atom:link href="http://blogfreakz.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>A site dedicated to keeping up with the latest trends on Web Design</description>
	<lastBuildDate>Thu, 24 May 2012 05:41:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How To Exclude A Category From Your WordPress Feed</title>
		<link>http://blogfreakz.com/wordpress-tutorial/how-to-exclude-a-category-from-your-wordpress-feed/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/how-to-exclude-a-category-from-your-wordpress-feed/#comments</comments>
		<pubDate>Wed, 23 May 2012 08:06:10 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=27547</guid>
		<description><![CDATA[Today I’d like to share with all of you this nice WordPress trick I stumbled on created by Joseph Foley; it shows you how to exclude one or more category from your WP feed. All it takes is for you to insert the following code in your functions.php file. function excludecatfeed($query) { if(is_feed()) { $query-&#62;set('cat','-1'); [...]]]></description>
			<content:encoded><![CDATA[<p><strong></strong>Today I’d like to share with all of you this nice WordPress trick I stumbled on created by Joseph Foley; it shows you how to exclude one or more category from your WP feed. All it takes is for you to insert the following code in your functions.php file.</p>
<pre><span style="color: #003366;">function excludecatfeed($query) {</span></pre>
<pre><span style="color: #003366;">if(is_feed()) {</span></pre>
<pre><span style="color: #003366;">$query-&gt;set('cat','-<strong>1</strong>');</span></pre>
<pre><span style="color: #003366;">return $query;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">}</span>
<span style="color: #003366;"> add_filter('pre_get_posts', 'excludecatfeed');</span></pre>
<p>Just indicate the ID number of the category you want excluded. In the above code, the ID number is “<strong>1</strong>”. Just replace the value if needed and just leave the minus “-“ symbol as is. To exclude more categories, just append the ID number separated by a comma (see example below).</p>
<pre><!--[if gte mso 9]><xml>
 <w:WordDocument>
  <w:View>Normal</w:View>
  <w:Zoom>0</w:Zoom>
  <w:TrackMoves />
  <w:TrackFormatting />
  <w:PunctuationKerning />
  <w:ValidateAgainstSchemas />
  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
  <w:DoNotPromoteQF />
  <w:LidThemeOther>EN-US</w:LidThemeOther>
  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
  <w:Compatibility>
   <w:BreakWrappedTables />
   <w:SnapToGridInCell />
   <w:WrapTextWithPunct />
   <w:UseAsianBreakRules />
   <w:DontGrowAutofit />
   <w:SplitPgBreakAndParaMark />
   <w:DontVertAlignCellWithSp />
   <w:DontBreakConstrainedForcedTables />
   <w:DontVertAlignInTxbx />
   <w:Word11KerningPairs />
   <w:CachedColBalance />
  </w:Compatibility>
  <m:mathPr>
   <m:mathFont m:val="Cambria Math" />
   <m:brkBin m:val="before" />
   <m:brkBinSub m:val=" " />
   <m:smallFrac m:val="off" />
   <m:dispDef />
   <m:lMargin m:val="0" />
   <m:rMargin m:val="0" />
   <m:defJc m:val="centerGroup" />
   <m:wrapIndent m:val="1440" />
   <m:intLim m:val="subSup" />
   <m:naryLim m:val="undOvr" />
  </m:mathPr></w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
  DefSemiHidden="true" DefQFormat="false" DefPriority="99"
  LatentStyleCount="267">
  <w:LsdException Locked="false" Priority="0" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Normal" />
  <w:LsdException Locked="false" Priority="9" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="heading 1" />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" />
  <w:LsdException Locked="false" Priority="39" Name="toc 1" />
  <w:LsdException Locked="false" Priority="39" Name="toc 2" />
  <w:LsdException Locked="false" Priority="39" Name="toc 3" />
  <w:LsdException Locked="false" Priority="39" Name="toc 4" />
  <w:LsdException Locked="false" Priority="39" Name="toc 5" />
  <w:LsdException Locked="false" Priority="39" Name="toc 6" />
  <w:LsdException Locked="false" Priority="39" Name="toc 7" />
  <w:LsdException Locked="false" Priority="39" Name="toc 8" />
  <w:LsdException Locked="false" Priority="39" Name="toc 9" />
  <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" />
  <w:LsdException Locked="false" Priority="10" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Title" />
  <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" />
  <w:LsdException Locked="false" Priority="11" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtitle" />
  <w:LsdException Locked="false" Priority="22" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Strong" />
  <w:LsdException Locked="false" Priority="20" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Emphasis" />
  <w:LsdException Locked="false" Priority="59" SemiHidden="false"
   UnhideWhenUsed="false" Name="Table Grid" />
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" />
  <w:LsdException Locked="false" Priority="1" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="No Spacing" />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading" />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List" />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid" />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1" />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2" />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1" />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2" />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1" />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2" />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3" />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List" />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading" />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List" />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid" />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 1" />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 1" />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 1" />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 1" />
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" />
  <w:LsdException Locked="false" Priority="34" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" />
  <w:LsdException Locked="false" Priority="29" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Quote" />
  <w:LsdException Locked="false" Priority="30" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 1" />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 1" />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 1" />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 1" />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 1" />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 2" />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 2" />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 2" />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 2" />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 2" />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 2" />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 2" />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 2" />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 2" />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 3" />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 3" />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 3" />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 3" />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 3" />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 3" />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 3" />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 3" />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 3" />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 4" />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 4" />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 4" />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 4" />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 4" />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 4" />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 4" />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 4" />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 4" />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 5" />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 5" />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 5" />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 5" />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 5" />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 5" />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 5" />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 5" />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 5" />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 6" />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 6" />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 6" />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 6" />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 6" />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 6" />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 6" />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 6" />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 6" />
  <w:LsdException Locked="false" Priority="19" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" />
  <w:LsdException Locked="false" Priority="21" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" />
  <w:LsdException Locked="false" Priority="31" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" />
  <w:LsdException Locked="false" Priority="32" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" />
  <w:LsdException Locked="false" Priority="33" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Book Title" />
  <w:LsdException Locked="false" Priority="37" Name="Bibliography" />
  <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" />
 </w:LatentStyles>
</xml><![endif]--><!--[if gte mso 10]>
<style><!--mce:0--></style>

<![endif]--><span style="font-size: 11pt; line-height: 115%; font-family: &quot;Courier New&quot;; color: #003366;">$query-&gt;set('cat','-1, -5, -7');</span></pre>
<p>Hope some of you find this nice little trick useful. Have a good day, everyone!</p>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val=" " /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} table.MsoTableGrid 	{mso-style-name:"Table Grid"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-priority:59; 	mso-style-unhide:no; 	border:solid windowtext 1.0pt; 	mso-border-alt:solid windowtext .5pt; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-border-insideh:.5pt solid windowtext; 	mso-border-insidev:.5pt solid windowtext; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} --> <!--[endif] --></p>
<table class="MsoTableGrid" style="border-collapse: collapse; border: none; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt;" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;">
<td style="width: 6.65in; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt;" width="638" valign="top">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-family: &quot;Courier New&quot;;">$query-&gt;set(&#8216;cat&#8217;,'-1, -5,   -7&#8242;);</span></p>
</td>
</tr>
</tbody>
</table>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/how-to-exclude-a-category-from-your-wordpress-feed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Alternative Way To Unburying Old Posts In WordPress Using PHP</title>
		<link>http://blogfreakz.com/tutorial/an-alternative-way-to-unburying-old-posts-in-wordpress-using-php/</link>
		<comments>http://blogfreakz.com/tutorial/an-alternative-way-to-unburying-old-posts-in-wordpress-using-php/#comments</comments>
		<pubDate>Tue, 22 May 2012 03:18:09 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=27523</guid>
		<description><![CDATA[As a blogger, you want your older posts to remain relevant to your new readers by making them visible on your site’s main page. And though there are various ways to achieve this (e.g. plugins, archive pages), Karol K. came up with his own unique and clever method by using PHP. With his method, you’ll [...]]]></description>
			<content:encoded><![CDATA[<p><strong></strong>As a blogger, you want your older posts to remain relevant to your new readers by making them visible on your site’s main page. And though there are various ways to achieve this (e.g. plugins, archive pages), <strong><a href="http://twitter.com/carlosinho">Karol K.</a></strong> came up with his own unique and clever method by using PHP.</p>
<p>With his method, you’ll be tinkering a bit with the <em>index.php</em> file. The whole idea is to create some space right after the first post listing and display a random archive post as the second one. The steps involve is as follows:</p>
<ul>
<li>Find the loop.</li>
<li>Include <span style="color: #003366;">“$first_post_marker = true;”</span> just above the loop.</li>
<li>Locate the closing <span style="color: #003366;">“endwhile;”</span> of the loop.</li>
<li>Include the following code directly above this <span style="color: #003366;">“endwhile;”</span>:</li>
</ul>
<pre><span style="color: #003366;">if($first_post_marker &amp;&amp; strlen($_SERVER['REQUEST_URI']) &lt; 2)    //to make sure that we’re on the first page</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">if(is_home())</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">$week = date(‘W’);</span></pre>
<pre><span style="color: #003366;">$whatyear = date(‘Y’)-1;</span></pre>
<pre><span style="color: #003366;">$custom_query = new WP_Query( ‘year=’ . $whatyear . ‘&amp;w=’ . $week . ‘&amp;orderby=rand’);    //random entry from the archive; same week, only one year back</span></pre>
<pre><span style="color: #003366;">while($custom_query-&gt;have_posts())</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">$custom_query-&gt;the_post();</span></pre>
<pre><span style="color: #003366;">/* ==================================</span></pre>
<pre><span style="color: #003366;">Here’s where you display your post, use the same formatting you’re using in the main loop.</span></pre>
<pre><span style="color: #003366;">Usually calls like: “the_title();” and “the_content(”);” and so on.</span></pre>
<pre><span style="color: #003366;">================================== */</span></pre>
<pre><span style="color: #003366;">break;    //we only need one post</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">wp_reset_postdata();</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">$first_post_marker = false;</span>
<span style="color: #003366;"> }</span></pre>
<p>Feel free to tell Karol what you think of his method by <strong><a href="http://themefuse.com/blog/simple-wordpress-tricks-on-how-to-un-bury-your-old-posts/">clicking here</a></strong>.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/an-alternative-way-to-unburying-old-posts-in-wordpress-using-php/" title="html5 video php">html5 video php</a></li>
<li><a href="http://blogfreakz.com/tutorial/an-alternative-way-to-unburying-old-posts-in-wordpress-using-php/" title="psd to wordpresscommentluv">psd to wordpresscommentluv</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/an-alternative-way-to-unburying-old-posts-in-wordpress-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build A WordPress Network Navigation Menu</title>
		<link>http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 08:39:10 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[network navigation]]></category>
		<category><![CDATA[WordPress Hack]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24902</guid>
		<description><![CDATA[WordPress 3.0 has allowed users to host multiple independent websites with just one feature called Multisite. It also lets you share settings, content, and code between websites within your network. Kevin Leary has shared some of the hacks he did to perform the aforementioned abilities in one of his articles; one of them involves building [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 3.0 has allowed users to host multiple independent websites with just one feature called Multisite. It also lets you share settings, content, and code between websites within your network.</p>
<p><a href="http://www.kevinleary.net/"><strong>Kevin Leary</strong></a> has shared some of the hacks he did to perform the aforementioned abilities in one of his articles; one of them involves building a network navigation menu. Below is a snippet of the code:</p>
<p>Simply paste this in your theme’s functions.php file.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">/**</span>&nbsp;</p>
<p><span style="color: #003366;">* Build a list of all websites   in a network</span></p>
<p><span style="color: #003366;">*/</span></p>
<p><span style="color: #003366;">function wp_list_sites( $expires = 7200 ) {</span></p>
<p><span style="color: #003366;">if( !is_multisite() ) return   false;</span></p>
<p><span style="color: #003366;">// Because the   get_blog_list() function is currently flagged as deprecated</span></p>
<p><span style="color: #003366;">// due to the potential for   high consumption of resources, we&#8217;ll use</span></p>
<p><span style="color: #003366;">// $wpdb to roll out our own   SQL query instead. Because the query can be</span></p>
<p><span style="color: #003366;">// memory-intensive, we&#8217;ll   store the results using the Transients API</span></p>
<p><span style="color: #003366;">if ( false === ( $site_list   = get_transient( &#8216;multisite_site_list&#8217; ) ) ) {</span></p>
<p><span style="color: #003366;">global $wpdb;</span></p>
<p><span style="color: #003366;">$site_list =   $wpdb-&gt;get_results( $wpdb-&gt;prepare(&#8216;SELECT * FROM wp_blogs ORDER BY   blog_id&#8217;) );</span></p>
<p><span style="color: #003366;">// Set the Transient   cache to expire every two hours</span></p>
<p><span style="color: #003366;">set_site_transient(   &#8216;multisite_site_list&#8217;, $site_list, $expires );</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">$current_site_url = get_site_url(   get_current_blog_id() );</span></p>
<p><span style="color: #003366;">$html = &#8216;</span></p>
<p><span style="color: #003366;">&lt;ul id=&#8221;network-menu&#8221;&gt;&#8217; . &#8220;\n&#8221;;</span></p>
<p><span style="color: #003366;">foreach ( $site_list as   $site ) {</span></p>
<p><span style="color: #003366;">switch_to_blog(   $site-&gt;blog_id );</span></p>
<p><span style="color: #003366;">$class = ( home_url() ==   $current_site_url ) ? &#8221; : &#8221;;</span></p>
<p><span style="color: #003366;">$html .= &#8220;\t&#8221; .   &#8216;</span></p>
<p><span style="color: #003366;">&lt;li id=&#8221;site-&#8217; . $site-&gt;blog_id . &#8216;&#8221; &#8216;=&#8221;"   .=&#8221;" $class=&#8221;"&gt;&lt;a href=&#8221;&#8216; . home_url() .   &#8216;&#8221;&gt;&#8217; . get_bloginfo(&#8216;name&#8217;) . &#8216;&lt;/a&gt;&lt;/li&gt;</span></p>
<p><span style="color: #003366;">&#8216; . &#8220;\n&#8221;;</span></p>
<p><span style="color: #003366;">restore_current_blog();</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">$html .= &#8216;&lt;/ul&gt;</span></p>
<p><span style="color: #003366;">&lt;!&#8211;// end #network-menu &#8211;&gt;&#8217; . &#8220;\n\n&#8221;;</span></p>
<p><span style="color: #003366;">return $html;</span></p>
<p><span style="color: #003366;">}</span></td>
</tr>
</tbody>
</table>
<p>You can use it in your theme by calling its <strong>wp_list_sites()</strong> function.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">&lt;?php</span>&nbsp;</p>
<p><span style="color: #003366;">// Multisite Network Menu</span></p>
<p><span style="color: #003366;">$network_menu = wp_list_sites();</span></p>
<p><span style="color: #003366;">if( $network_menu ):</span></p>
<p><span style="color: #003366;">?&gt;</span></p>
<p><span style="color: #003366;">&lt;div id=&#8221;network-menu&#8221;&gt;</span></p>
<p><span style="color: #003366;">&lt;?php echo $network_menu;   ?&gt;</span></p>
<p><span style="color: #003366;">&lt;/div&gt;</span></p>
<p><span style="color: #003366;">&lt;!&#8211;// end #network-menu &#8211;&gt;</span></p>
<p><span style="color: #003366;">&lt;?php endif; ?&gt;</span></td>
</tr>
</tbody>
</table>
<p>Cool, huh? Find out more about the rest of his WordPress hacks <a href="http://wp.smashingmagazine.com/2011/11/17/wordpress-multisite-practical-functions-methods/"><strong>here</strong></a>!<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/" title="wordpress network menu">wordpress network menu</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/" title="wp_list_sites">wp_list_sites</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/" title="
<li id=site- $site->blog_id = = $class=><a href= home_url() > get_bloginfo(name) </a></li>
<p>&#8220;>
<li id=site- $site->blog_id = = $class=><a href= home_url() > get_bloginfo(name) </a></li>
<p></a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/" title="build a network navigation menu">build a network navigation menu</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/" title="function wp_list_sites">function wp_list_sites</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/" title="function wp_list_sites( $expires = 7200 )">function wp_list_sites( $expires = 7200 )</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/" title="network menu in wordpress">network menu in wordpress</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/" title="network navigation menu wordpress">network navigation menu wordpress</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/" title="wordpress network">wordpress network</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fructose &#8211; Now You Can Compile Your Ruby Into PHP</title>
		<link>http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/</link>
		<comments>http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 07:42:10 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Software & Tools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=19572</guid>
		<description><![CDATA[Fructose is a subset of Ruby that&#8217;s designed to be compiled into PHP 5.x. The generated code should run on any PHP version above 5.0. Most major Ruby features are supported, including operator overloading and blocks. Eventually, most of the Ruby standard library will be available to Fructose programs via libfructose. Fructose isn&#8217;t production ready [...]]]></description>
			<content:encoded><![CDATA[<p><a title="fructoselang" rel="nofollow" href="http://www.fructoselang.org" target="_blank">Fructose</a> is a subset of Ruby that&#8217;s designed to be compiled into PHP 5.x. The generated code should run on any PHP version above 5.0. Most major Ruby features are supported, including operator overloading and blocks. Eventually, most of the Ruby standard library will be available to Fructose programs via libfructose.</p>
<p><span id="more-19572"></span></p>
<p><a rel="nofollow" href="http://www.fructoselang.org"><img class="alignnone size-full wp-image-19575" title="fructose" src="http://blogfreakz.com/wp-content/uploads/2011/04/fructose.jpg" alt="fructose Fructose   Now You Can Compile Your Ruby Into PHP" width="600" height="300" /></a></p>
<p>Fructose isn&#8217;t production ready yet, but you&#8217;re free to poke around and try it out over at the <a rel="nofollow" href="http://github.com/charliesome/Fructose">GitHub repository</a>.</p>
<p class="download">Website: <a title="fructoselang" rel="nofollow" href="http://www.fructoselang.org" target="_blank">http://www.fructoselang.org</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="Fructose ruby">Fructose ruby</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="fructose">fructose</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="ruby fructose">ruby fructose</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="compile php mac">compile php mac</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="fructose for grails#sclient=psy-ab">fructose for grails#sclient=psy-ab</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="compile ruby in php">compile ruby in php</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="fructose ruby into php">fructose ruby into php</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="Now compile Serotonina without dipendencies">Now compile Serotonina without dipendencies</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="compile ruby">compile ruby</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="ruby fructose cakephp">ruby fructose cakephp</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add onto Your PHP Knowledge with 30 Expert Tutorials</title>
		<link>http://blogfreakz.com/news/add-onto-your-php-knowledge-with-30-expert-tutorials/</link>
		<comments>http://blogfreakz.com/news/add-onto-your-php-knowledge-with-30-expert-tutorials/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 09:52:24 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/add-onto-your-php-knowledge-with-30-expert-tutorials/</guid>
		<description><![CDATA[Internet realm is vast and does not limit itself for some basic development tools. It has diverse development tool kit in which PHP has a very significant role. PHP is an awesome tool and can develop desired website. Keeping this in mind, I am posting this perfect PHP round up article for those who are [...]]]></description>
			<content:encoded><![CDATA[<p>Internet realm is vast and does not limit itself for some basic development tools. It has diverse development tool kit in which PHP has a very significant role. PHP is an awesome tool and can develop desired website. Keeping this in mind, I am posting this perfect PHP round up article for those who are not expert but they want to be.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/add-onto-your-php-knowledge-with-30-expert-tutorials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upload &amp; Crop Image With PHP &amp; jQuery</title>
		<link>http://blogfreakz.com/jquery/image-upload-crop-php-jquery/</link>
		<comments>http://blogfreakz.com/jquery/image-upload-crop-php-jquery/#comments</comments>
		<pubDate>Mon, 24 Jan 2011 18:23:09 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=15224</guid>
		<description><![CDATA[webmotionuk is sharing tutorial how to upload image and crop the image with php and jquery. This script allow us to upload of JPG, GIFs and PNG images. It use Image Area Select plugin by Michal Wojciechowski for selecting a rectangular area of an image. Basicaly, they are using form to uploading image. Once the [...]]]></description>
			<content:encoded><![CDATA[<p>webmotionuk is sharing tutorial<a title="upload and crop image" rel="nofollow" href="http://www.webmotionuk.co.uk/php-jquery-image-upload-and-crop/" target="_blank"> how to upload image and crop the image with php and jquery</a>. This script allow us to upload of JPG, GIFs and PNG images. It use <a title="image area select plugin" rel="nofollow" href="http://odyniec.net/projects/imgareaselect/" target="_blank">Image Area Select plugin</a> by Michal Wojciechowski for selecting a rectangular area of an image.</p>
<p><span id="more-15224"></span><a rel="nofollow" href="http://www.webmotionuk.co.uk/php-jquery-image-upload-and-crop"><img class="alignnone size-large wp-image-15262" title="image-crop" src="http://blogfreakz.com/wp-content/uploads/2011/01/image-crop-600x274.jpg" alt="image crop 600x274 Upload & Crop Image With PHP & jQuery" width="600" height="274" /></a></p>
<p>Basicaly, they are using form to uploading image. Once the image has been uploaded and saved to folder, they are using the “Image Area Select” plugin to crop the image. It basically provides the coordinates to the server to handle the crop.</p>
<p>* x1, y1 = coordinates of the top left corner of the initial selection area<br />
* x2, y2 = coordinates of the bottom right corner of the initial selection area<br />
* width = crop selection width.</p>
<p class="download">Requirements: PHP 4 or Higher, PHP GD Library, <a href="http://jquery.com/" target="_blank">jQuery ver 1.2.3</a> or Higher, <a rel="nofollow" href="http://odyniec.net/projects/imgareaselect/" target="_blank">Image Area Select</a> plugin<br />
Demo: <a title="image upload crop " rel="nofollow" href="http://www.webmotionuk.co.uk/jquery/image_upload_crop.php" target="_blank">http://www.webmotionuk.co.uk/jquery/image_upload_crop.php</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/image-upload-crop-php-jquery/" title="jquery facebook image upload">jquery facebook image upload</a></li>
<li><a href="http://blogfreakz.com/jquery/image-upload-crop-php-jquery/" title="jquery upload image">jquery upload image</a></li>
<li><a href="http://blogfreakz.com/jquery/image-upload-crop-php-jquery/" title="jquery upload crop">jquery upload crop</a></li>
<li><a href="http://blogfreakz.com/jquery/image-upload-crop-php-jquery/" title="jquery image upload crop">jquery image upload crop</a></li>
<li><a href="http://blogfreakz.com/jquery/image-upload-crop-php-jquery/" title="image upload and crop jquery">image upload and crop jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/image-upload-crop-php-jquery/" title="upload crop php">upload crop php</a></li>
<li><a href="http://blogfreakz.com/jquery/image-upload-crop-php-jquery/" title="jquery crop">jquery crop</a></li>
<li><a href="http://blogfreakz.com/jquery/image-upload-crop-php-jquery/" title="jquery upload crop image">jquery upload crop image</a></li>
<li><a href="http://blogfreakz.com/jquery/image-upload-crop-php-jquery/" title="php &#038; jquery image upload and crop">php &#038; jquery image upload and crop</a></li>
<li><a href="http://blogfreakz.com/jquery/image-upload-crop-php-jquery/" title="jquery crop upload">jquery crop upload</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/image-upload-crop-php-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>40  WordPress Magazine Themes Empowered by Ajax and jQuery</title>
		<link>http://blogfreakz.com/news/40-wordpress-magazine-themes-empowered-by-ajax-and-jquery/</link>
		<comments>http://blogfreakz.com/news/40-wordpress-magazine-themes-empowered-by-ajax-and-jquery/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 16:16:43 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[inspirational]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/40-wordpress-magazine-themes-empowered-by-ajax-and-jquery/</guid>
		<description><![CDATA[The post focuses on WordPress themes empowered by Ajax and jQuery. The given themes in the posts are elegantly created using the above said tools for Web 2.0 WordPress. There is new trend of WordPress magazines and keeping this in mind I have presented some intriguing and inspirational WordPress Magazines themes. Incoming search terms for [...]]]></description>
			<content:encoded><![CDATA[<p>The post focuses on WordPress themes empowered by Ajax and jQuery. The given themes in the posts are elegantly created using the above said tools for Web 2.0 WordPress. There is new trend of WordPress magazines and keeping this in mind I have presented some intriguing and inspirational WordPress Magazines themes.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/news/40-wordpress-magazine-themes-empowered-by-ajax-and-jquery/" title="android gui">android gui</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/40-wordpress-magazine-themes-empowered-by-ajax-and-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When Developers and Designers Work With Eachother</title>
		<link>http://blogfreakz.com/news/when-developers-and-designers-work-with-eachother/</link>
		<comments>http://blogfreakz.com/news/when-developers-and-designers-work-with-eachother/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 06:17:31 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[web designer]]></category>
		<category><![CDATA[web developer]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/when-developers-and-designers-work-with-eachother/</guid>
		<description><![CDATA[Some professions are just meant to be together. This sentence can go perfectly for designers and developers who often work together on web designing and development together. Both professionals have their respective skills and job requirement i.e. a graphic designer makes brochures, flyers, postcards and business cards etc, and a web developer develops websites. However, [...]]]></description>
			<content:encoded><![CDATA[<p>Some professions are just meant to be together. This sentence can go perfectly for designers and developers who often work together on web designing and development together. Both professionals have their respective skills and job requirement i.e. a graphic designer makes brochures, flyers, postcards and business cards etc, and a web developer develops websites. However, there are some projects or cases in which a developer and a designer are required to work together and a big example of such projects is website making.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/when-developers-and-designers-work-with-eachother/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Availability Calendar &#8211; Displays Booking Availability With PHP Script</title>
		<link>http://blogfreakz.com/php/availability-calendar-displays-booking-availability-with-php-script/</link>
		<comments>http://blogfreakz.com/php/availability-calendar-displays-booking-availability-with-php-script/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 03:08:08 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Calendar]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=13158</guid>
		<description><![CDATA[The Ajax Availability Calendar is a php script designed to show availability of whatever you might need it for (eg. holiday cottage, hotel rooms etc.). This php script allow us to add unlimited items, language and booking states( holiday homes, apartement, etc). Availability Calendar has admin panel with multiple administration users. It uses Ajax to [...]]]></description>
			<content:encoded><![CDATA[<p>The <a title="Ajax Availability Calendar" rel="nofollow" href="http://www.ajaxavailabilitycalendar.com/" target="_blank">Ajax Availability Calendar </a>is a php script designed to show availability of whatever you might need it for (eg. holiday cottage, hotel rooms etc.).</p>
<p><span id="more-13158"></span></p>
<p><a title="availability calendar" rel="nofollow" href="http://www.ajaxavailabilitycalendar.com/demo" target="_blank"><img class="alignnone size-full wp-image-13160" title="availabilitycalendar2" src="http://blogfreakz.com/wp-content/uploads/2010/12/availabilitycalendar2.jpg" alt="availabilitycalendar2 Availability Calendar   Displays Booking Availability With PHP Script" width="600" height="154" /></a></p>
<p>This php script allow us to add unlimited items, language and booking states( holiday homes, apartement, etc). Availability Calendar has admin panel with multiple administration users. It uses Ajax to change months viewed without reloading the page. All javascript handled by the Mootools library.</p>
<p class="download"><strong>Requirement</strong>: Web Server<br />
<strong>Demo </strong>: <a rel="nofollow" href="http://www.ajaxavailabilitycalendar.com/demo" target="_blank">http://www.ajaxavailabilitycalendar.com/demo</a><br />
<strong>License </strong>: Other License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/php/availability-calendar-displays-booking-availability-with-php-script/" title="jquery availability calendar">jquery availability calendar</a></li>
<li><a href="http://blogfreakz.com/php/availability-calendar-displays-booking-availability-with-php-script/" title="jquery booking calendar">jquery booking calendar</a></li>
<li><a href="http://blogfreakz.com/php/availability-calendar-displays-booking-availability-with-php-script/" title="php booking calendar tutorial">php booking calendar tutorial</a></li>
<li><a href="http://blogfreakz.com/php/availability-calendar-displays-booking-availability-with-php-script/" title="availability calendar jquery">availability calendar jquery</a></li>
<li><a href="http://blogfreakz.com/php/availability-calendar-displays-booking-availability-with-php-script/" title="booking calendar jquery">booking calendar jquery</a></li>
<li><a href="http://blogfreakz.com/php/availability-calendar-displays-booking-availability-with-php-script/" title="jquery booking calendar tutorial">jquery booking calendar tutorial</a></li>
<li><a href="http://blogfreakz.com/php/availability-calendar-displays-booking-availability-with-php-script/" title="jquery booking">jquery booking</a></li>
<li><a href="http://blogfreakz.com/php/availability-calendar-displays-booking-availability-with-php-script/" title="jquery reservation calendar">jquery reservation calendar</a></li>
<li><a href="http://blogfreakz.com/php/availability-calendar-displays-booking-availability-with-php-script/" title="jquery booking calendar php">jquery booking calendar php</a></li>
<li><a href="http://blogfreakz.com/php/availability-calendar-displays-booking-availability-with-php-script/" title="mac web design availability calendar">mac web design availability calendar</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/php/availability-calendar-displays-booking-availability-with-php-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>myTinyTodo -Open Source To-Do List Apps Written In PHP And jQuery</title>
		<link>http://blogfreakz.com/tools/mytinytodo-open-source-to-do-list-apps-written-in-php-and-jquery/</link>
		<comments>http://blogfreakz.com/tools/mytinytodo-open-source-to-do-list-apps-written-in-php-and-jquery/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 01:20:08 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[Software & Tools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=10798</guid>
		<description><![CDATA[myTinyTodo is open source ajax style to-do list application Written in PHP and jQuery. Data stored in SQLite or MySQL database. Features Multiple lists Task notes Tags (and tag cloud) Due dates (input format: y-m-d, m/d/y, d.m.y, m/d, d.m) Priority (-1, 0, +1, +2) Sorting by drag-and-drop (order stored in db), priority or due date [...]]]></description>
			<content:encoded><![CDATA[<p><a title="mytinytodo" rel="nofollow" href="http://www.mytinytodo.net" target="_blank">myTinyTodo</a> is open source ajax style to-do list application Written in PHP and jQuery. Data stored in SQLite or MySQL database.</p>
<p><span id="more-10798"></span><a rel="nofollow" href="http://www.mytinytodo.net/"><img class="aligncenter size-full wp-image-10799" title="mytinytodo" src="http://blogfreakz.com/wp-content/uploads/2010/10/mytinytodo.jpg" alt="mytinytodo myTinyTodo  Open Source To Do List Apps Written In PHP And jQuery " width="600" height="263" /></a></p>
<h3>Features</h3>
<ul>
<li>Multiple lists</li>
<li>Task notes</li>
<li>Tags (and tag cloud)</li>
<li>Due dates (input format: y-m-d, m/d/y, d.m.y, m/d, d.m)</li>
<li>Priority (-1, 0, +1, +2)</li>
<li>Sorting by drag-and-drop (order stored in db), priority or due date</li>
<li>Search</li>
<li>Password protection</li>
<li>Smart syntax improves creation of tasks (usage: /priority/ Task /tags/)</li>
<li>Print-friendly CSS</li>
<li>Style for mobiles devices</li>
</ul>
<p class="download"><strong>Requirements</strong>: PHP,jQuery<br />
<strong>Demo</strong>: <a title="Demo" rel="nofollow" href="http://www.mytinytodo.net/demo" target="_blank">http://www.mytinytodo.net/demo</a><br />
<strong>License</strong>: GNU GPL License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tools/mytinytodo-open-source-to-do-list-apps-written-in-php-and-jquery/" title="jquery todo list">jquery todo list</a></li>
<li><a href="http://blogfreakz.com/tools/mytinytodo-open-source-to-do-list-apps-written-in-php-and-jquery/" title="mytinytodo">mytinytodo</a></li>
<li><a href="http://blogfreakz.com/tools/mytinytodo-open-source-to-do-list-apps-written-in-php-and-jquery/" title="Todo List script">Todo List script</a></li>
<li><a href="http://blogfreakz.com/tools/mytinytodo-open-source-to-do-list-apps-written-in-php-and-jquery/" title="todo script php">todo script php</a></li>
<li><a href="http://blogfreakz.com/tools/mytinytodo-open-source-to-do-list-apps-written-in-php-and-jquery/" title="php todo list">php todo list</a></li>
<li><a href="http://blogfreakz.com/tools/mytinytodo-open-source-to-do-list-apps-written-in-php-and-jquery/" title="to do list script">to do list script</a></li>
<li><a href="http://blogfreakz.com/tools/mytinytodo-open-source-to-do-list-apps-written-in-php-and-jquery/" title="todo list php">todo list php</a></li>
<li><a href="http://blogfreakz.com/tools/mytinytodo-open-source-to-do-list-apps-written-in-php-and-jquery/" title="jquery to do list">jquery to do list</a></li>
<li><a href="http://blogfreakz.com/tools/mytinytodo-open-source-to-do-list-apps-written-in-php-and-jquery/" title="jquery todolist">jquery todolist</a></li>
<li><a href="http://blogfreakz.com/tools/mytinytodo-open-source-to-do-list-apps-written-in-php-and-jquery/" title="todo list jquery">todo list jquery</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tools/mytinytodo-open-source-to-do-list-apps-written-in-php-and-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

