<?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>FixWordPress.NET</title>
	<atom:link href="http://www.fixwordpress.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fixwordpress.net</link>
	<description>Specialists in all things WordPress</description>
	<lastBuildDate>Thu, 01 Mar 2012 15:30:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>$(document).ready vs. $(window).load</title>
		<link>http://www.fixwordpress.net/document-ready-vs-window-load/</link>
		<comments>http://www.fixwordpress.net/document-ready-vs-window-load/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 13:48:15 +0000</pubDate>
		<dc:creator>Larry Ngaosi</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://www.fixwordpress.net/?p=115</guid>
		<description><![CDATA[jQuery offers two powerful methods to execute code and attach event handlers: $(document).ready and $(window).load. The document ready event executes already when the HTML-Document is loaded and the DOM is ready, even if all the graphics haven’t loaded yet. If you want to hook up your events for certain elements before the window loads, then [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery offers two powerful methods to execute code and attach event handlers: $(document).ready and $(window).load. The document ready event executes already when the HTML-Document is loaded and the DOM is ready, even if all the graphics haven’t loaded yet. If you want to hook up your events for certain elements before the window loads, then $(document).ready is the right place.</p>
<pre>
<code>
$(document).ready(function() {
// executes when HTML-Document is loaded and DOM is ready
alert("document is ready");
});
</code>
</pre>
<p>The window load event executes a bit later when the complete page is fully loaded, including all frames, objects and images. Therefore functions which concern images or other page contents should be placed in the load event for the window or the content tag itself.</p>
<pre>
<code>
$(window).load(function() {
// executes when complete page is fully loaded, including all frames, objects and images
alert("window is loaded");
});
</code>
</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixwordpress.net/document-ready-vs-window-load/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Content First Website Layout</title>
		<link>http://www.fixwordpress.net/content-first-website-layout/</link>
		<comments>http://www.fixwordpress.net/content-first-website-layout/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 01:34:39 +0000</pubDate>
		<dc:creator>Larry Ngaosi</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://www.fixwordpress.net/?p=101</guid>
		<description><![CDATA[To make this simple; The html layout of a website with Content First Concept starts with the content then followed by the headers, sidebars, then footer&#8230; &#60;html&#62; &#60;head&#62;&#60;/head&#62; &#60;body&#62; &#60;div id="main"&#62; &#60;div id="content"&#62; &#60;h1&#62;Page Title&#60;/h1&#62; &#60;p&#62;Contents coming soon.......&#60;/p&#62; &#60;/div&#62; &#60;div id="header"&#62;&#60;/div&#62; &#60;div id="sidebar"&#62;&#60;/div&#62; &#60;/div&#62; &#60;div id="footer"&#62;&#60;/div&#62; &#60;/body&#62; &#60;/html&#62; The purpose of this is to let [...]]]></description>
			<content:encoded><![CDATA[<p>To make this simple;<br />
The html layout of a website with Content First Concept starts with the content then followed by the headers, sidebars, then footer&#8230;</p>
<pre>&lt;html&gt;
&lt;head&gt;&lt;/head&gt;
&lt;body&gt;
&lt;div id="main"&gt;
&lt;div id="content"&gt;
&lt;h1&gt;Page Title&lt;/h1&gt;
&lt;p&gt;Contents coming soon.......&lt;/p&gt;
&lt;/div&gt;
&lt;div id="header"&gt;&lt;/div&gt;
&lt;div id="sidebar"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div id="footer"&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The purpose of this is to let the &#8220;crawlers&#8221; to crawl the content first.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixwordpress.net/content-first-website-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Latest Trends in Web Design</title>
		<link>http://www.fixwordpress.net/latest-trends-in-web-design/</link>
		<comments>http://www.fixwordpress.net/latest-trends-in-web-design/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 11:41:46 +0000</pubDate>
		<dc:creator>Larry Ngaosi</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://www.fixwordpress.net/?p=80</guid>
		<description><![CDATA[Minimalism Minimalism is not a new concept; it is often understood as the best approach towards communicating a precise message to an audience. By retaining only essential elements, minimalist designers use negative (or white) space to enhance the message and draw in the user. When aiming for minimalism, I would suggest using a grid system—but [...]]]></description>
			<content:encoded><![CDATA[<h2>Minimalism</h2>
<p>Minimalism is not a new concept; it is often understood as the best approach towards communicating a precise message to an audience. By retaining only essential elements, minimalist designers use negative (or white) space to enhance the message and draw in the user.</p>
<p><a href="http://www.blackestate.co.nz/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-01.jpg" alt="http://www.blackestate.co.nz/" title="ltiwd-01" width="560" height="300" class="aligncenter size-full wp-image-81" /></a></p>
<p>When aiming for minimalism, I would suggest using a grid system—but keep in mind that designers have mixed opinions about this approach. Without a grid, though, there is a danger that what you produce will appear disorganized and incomplete.</p>
<h2>Negative Space</h2>
<p><a href="http://usonline.apc.fr/catalog/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-02.jpg" alt="http://usonline.apc.fr/catalog/" title="ltiwd-02" width="560" height="300" class="aligncenter size-full wp-image-82" /></a></p>
<p>The use of negative space in design has been a related emerging trend. Plenty of white space is visually pleasing, and it allows the reader’s eyes to rest. Combining minimalism and negative space pushes a message to the forefront of a design and captures the user’s imagination. Now, white space does not necessarily have to be white; it simply refers to empty or blank space on the page. Empty space makes a page more scannable and helps to highlight the relation between elements through their distance from each other.</p>
<h2>Typography</h2>
<p><a href="http://www.amazeelabs.com/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-03.jpg" alt="http://www.amazeelabs.com/" title="ltiwd-03" width="560" height="300" class="aligncenter size-full wp-image-84" /></a></p>
<p>Stylized typography is an age-old feature, and today designers are using it as a primary weapon in their arsenal of innovation. Until recently, most have restricted themselves to select web-safe fonts. But with the growing numbers of tools and applications, typography has become a primary design element in its own right. The demand for larger and more exciting fonts is rapidly increasing, and these fonts are replacing the old system fonts as designers play with techniques such as line height. Tools such as WhatTheFont, CSS Typeset and Typetester have helped designers be more creative and allow for different typeface to be used across the web.</p>
<h2>CSS3</h2>
<p>CSS3 is the latest module of CSS (Cascading Style Sheets). Its much more advanced set of features make this new version the tool of the future. However, there are some mixed reviews as a result of its incompatibility with Internet Explorer and other browsers. Even still, watch out for CSS3 in 2011. Some exciting and distinctive aspects of CSS3 are features like “border radius,” “box shadow,” multiple background images and text shadow. Animations with CSS3 are made easy, subtle and lightweight.</p>
<p><a href="http://chirp.twitter.com/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-04.jpg" alt="http://chirp.twitter.com/" title="ltiwd-04" width="560" height="300" class="aligncenter size-full wp-image-83" /></a></p>
<ul>
<li> <strong>Box and Text Shadows</strong>
<p>CSS3 has made the task of giving an in-depth visual experience (in this case, with shadows) quite easy. Customizable shadow capabilities allow the designer to create various effects like drop and inner shadows. The demand for this capability will only increase as time goes by.
</li>
<li><strong>RGBa and Opacity</strong>
<p>This is one of the most advanced features of CSS3 and can be applied to any colored element (fonts, borders, background, shadow, etc.). This trend has also gained enormous popularity. </li>
</ul>
<h2>HTML5</h2>
<p><a href="http://webdesignerwall.com/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-05.jpg" alt="http://webdesignerwall.com/" title="ltiwd-05" width="560" height="300" class="aligncenter size-full wp-image-87" /></a></p>
<p>The latest version of the HTML specification is another trend in high demand. It enables the designer and developer to create more readable code and build layouts that are semantically meaningful. It introduces advanced features that help you structure mark-up. Other HTML5 features are APIs, dragging, drawing graphics on screen, canvas, keygen, output and progress.</p>
<h2>Textured Backgrounds</h2>
<p><a href="http://hugsformonsters.com/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-06.jpg" alt="http://hugsformonsters.com/" title="ltiwd-06" width="560" height="300" class="aligncenter size-full wp-image-86" /></a></p>
<p>The use of textured backgrounds is another hot trend to follow. The visual experience of the audience increases exponentially if the background is aesthetically pleasing and precise. The points to focus on are simplicity of design and the illusion of textures to create depth and dimension on the page.</p>
<h2>Simplicity</h2>
<p><a href="http://www.nclud.com/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-07.jpg" alt="http://www.nclud.com/" title="ltiwd-07" width="560" height="300" class="aligncenter size-full wp-image-85" /></a></p>
<p>Simplicity is yet another recent design trend that has captured the respect and imagination of users. The principal of “less is more” is being increasingly applied. As designers, we have always obeyed the demands of clients, often developing websites full of complex, unrelated features and countless repetitions. However, times have changed, and so have the demands of the trade. Users and clients seem to finally understand the importance of simplicity, of removing clutter from the page and allowing plenty of white space. With the need for websites to be mobile-friendly, compatible and accessible, design has to be kept simple. The simpler a website, the easier it is to navigate and comprehend.</p>
<h2>Single-Page Websites</h2>
<p><a href="http://www.smultronlab.com/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-08.jpg" alt="http://www.smultronlab.com/" title="ltiwd-08" width="560" height="300" class="aligncenter size-full wp-image-91" /></a></p>
<p>The ever-expanding competition to keep users on a website is becoming more challenging. Visitors scan web pages to locate the information they want, but with each click required to delve deeper into the website, the interest level drop. This phenomenon has led to a growing desire to build single-page websites. For their part, designers must be competent enough to consolidate and summarize all of their content in a standalone user interface.</p>
<h2>Print Design</h2>
<p><a href="http://www.un.titled.co.uk/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-09.jpg" alt="http://www.un.titled.co.uk/" title="ltiwd-09" width="560" height="300" class="aligncenter size-full wp-image-90" /></a></p>
<p>Print media has, of course, been around much longer than the web. As a result, print designers have a longer history to refer to as they master their art and develop their creativity. This could be one reason why many of the latest web design trends are inspired by print media concepts, whether innovative typography, aesthetic backgrounds, negative space or grid structures.</p>
<h2>Large Headings</h2>
<p><a href="http://www.phase2technology.com/design/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-10.jpg" alt="http://www.phase2technology.com/design/" title="ltiwd-10" width="560" height="300" class="aligncenter size-full wp-image-89" /></a></p>
<p>Large headings is another trend inspired by traditional print media (such as advertising brochures, magazines and newspapers) and used to grab the interest of the reader. Given the incredible amount of information online, the attention span of the online audience is far shorter than that of a print audience. Large headings are now a necessity and are almost certain to make an impression and attract users.</p>
<h2>Infographics</h2>
<p><a href="http://dmtr.org/lunarcalendar/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-11.jpg" alt="http://dmtr.org/lunarcalendar/" title="ltiwd-11" width="560" height="300" class="aligncenter size-full wp-image-88" /></a></p>
<p>The use of infographics is only going to grow in 2011. Combining graphics and images, this feature highlights information in a way that makes for a more absorbing environment for the reader. It also allows the key message to be expressed with more clarity and concision. As the need to comprehend complex, diverse pieces of information increases, so will the demand for infographics.</p>
<h2>Serif Fonts</h2>
<p><a href="http://legistyles.com/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-12.jpg" alt="http://legistyles.com/" title="ltiwd-12" width="560" height="300" class="aligncenter size-full wp-image-93" /></a></p>
<p>Traditional websites were primarily built with Arial or Verdana font scripts; most designers shied away from serif fonts because of their poor readability on traditional browsers. Today, mobile applications are the most popular with online businesses, and the technology has responded accordingly. Now, more browsers and handset applications use high-resolution display screens, allowing for increased readability. In this regard, a cue may be taken from print designers and their use of serif fonts. The more defined edges of these fonts improve the reading experience, especially on high-resolution screens.</p>
<h2>Thumbnails</h2>
<p><a href="http://arc90.com/people/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-13.jpg" alt="http://arc90.com/people/" title="ltiwd-13" width="560" height="300" class="aligncenter size-full wp-image-92" /></a></p>
<p>Google has taken the use of thumbnails in design to new heights. Its extensive use of them has afforded greater ease and comfort to the user. Now, users simply place their cursor over a headline and they’ll know exactly what to expect without committing to clicking into that website. This has undoubtedly saved the user time, eliminating the need to click and wait for pages to load as they surf. I’ve found this approach has gotten a mixed reception from designers, but I think it’s here to stay.</p>
<h2>Multi-Column Format</h2>
<p><a href="http://www.godaddy.com/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-14.jpg" alt="http://www.godaddy.com/" title="ltiwd-14" width="560" height="300" class="aligncenter size-full wp-image-97" /></a></p>
<p>Another growing trend among designers is to present information in a way that is easy to scan and comprehend in a short amount of time. Presenting information clearly has become easier to accomplish through the use of multiple-column designs. For this reason, this trend will stay and continue to evolve.</p>
<h2>Big Lead Images</h2>
<p><a href="http://www.fishrestaurantcharleston.com/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-15.jpg" alt="http://www.fishrestaurantcharleston.com/" title="ltiwd-15" width="560" height="300" class="aligncenter size-full wp-image-96" /></a></p>
<p>This is another trend inspired by the effective use of images in print media. The web browser was not initially designed to load heavy image files quickly; now, with the advancements in display and loading technology, you can expect big lead images to become even more popular. In general, high-impact images are effective in creating a lasting impression on the user.</p>
<h2>Social Networking</h2>
<p><a href="http://www.yast.com/"><img src="http://www.fixwordpress.net/wp-content/uploads/ltiwd-16.jpg" alt="http://www.yast.com/" title="ltiwd-16" width="560" height="300" class="aligncenter size-full wp-image-98" /></a></p>
<p>The integration of social media will continue to spread like wildfire throughout the web in the near future. This practice has allowed businesses to gain greater exposure and access to users than ever before. Online businesses, big and small, will focus squarely on this in 2011.</p>
<p>Take a moment to share other design trends not mentioned here; they’ll be greatly appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixwordpress.net/latest-trends-in-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Display Content in Multiple Columns</title>
		<link>http://www.fixwordpress.net/how-to-display-content-in-multiple-columns/</link>
		<comments>http://www.fixwordpress.net/how-to-display-content-in-multiple-columns/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 02:35:20 +0000</pubDate>
		<dc:creator>Larry Ngaosi</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/a001/?p=71</guid>
		<description><![CDATA[Printed magazines often display text in columns, so why blogs shouldn&#8217;t be able to do the same? here you can find out how to easily and automatically display your post content in columns. This code is powerful but definitely easy to implement. Just paste it on your&#160;functions.php&#160;file and it will automatically output your post content [...]]]></description>
			<content:encoded><![CDATA[<p>Printed magazines often display text in columns, so why blogs shouldn&rsquo;t be able to do the same? here you can find out how to easily and automatically display your post content in columns.</p>
<p>This code is powerful but definitely easy to implement. Just paste it on your&nbsp;<em>functions.php</em>&nbsp;file and it will automatically output your post content in columns.<br />
  Your post content will be splitted on&nbsp;<em>&lt;h2&gt;</em>&nbsp;tags.</p>
<pre>
<ol start="1">
<li>function&nbsp;my_multi_col($content){&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;$columns&nbsp;=&nbsp;explode('&lt;h2&gt;',&nbsp;$content);&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;$i&nbsp;=&nbsp;0;&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;foreach&nbsp;($columns&nbsp;as&nbsp;$column){&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(($i&nbsp;%&nbsp;2)&nbsp;==&nbsp;0){&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$return&nbsp;.=&nbsp;'&lt;div&nbsp;class="content_left"&gt;'&nbsp;.&nbsp;"\n";&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;($i&nbsp;&gt;&nbsp;1){&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$return&nbsp;.=&nbsp;"&lt;h2&gt;";&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;else{&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$return&nbsp;.=&nbsp;'&lt;div&nbsp;class="content_right"&gt;'&nbsp;.&nbsp;"\n&nbsp;&lt;h2&gt;";&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$return&nbsp;.=&nbsp;$column;&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$return&nbsp;.=&nbsp;'&lt;/h2&gt;&lt;/div&gt;';&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$i++;&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;if(isset($columns[1])){&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$content&nbsp;=&nbsp;wpautop($return);&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;}else{&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$content&nbsp;=&nbsp;wpautop($content);&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;echo&nbsp;$content;&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;}&nbsp;&nbsp;</li>
<li>}&nbsp;&nbsp;</li>
<li>add_filter('the_content',&nbsp;'my_multi_col');&nbsp;&nbsp;</li>
<li>&lt;/h2&gt;&nbsp;&nbsp;</li>
<li>&lt;/div&gt;&nbsp;&nbsp;</li>
<li>&lt;/h2&gt;</li>
</ol>
</pre>
<p>Don’t forget to add the following styles to your style.css file :</p>
<pre>
<ol start="1">
<li>.content_right,&nbsp;.content_left{&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;float:left;&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;width:45%;&nbsp;&nbsp;</li>
<li>}&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;</li>
<li>.content_left{&nbsp;&nbsp;</li>
<li>&nbsp;&nbsp;padding-right:5%;&nbsp;&nbsp;</li>
<li>}&nbsp;&nbsp;</li>
</ol>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fixwordpress.net/how-to-display-content-in-multiple-columns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Show Parent Page Title Regardless of What Subpage You Are On</title>
		<link>http://www.fixwordpress.net/how-to-show-parent-page-title-regardless-of-what-subpage-you-are-on/</link>
		<comments>http://www.fixwordpress.net/how-to-show-parent-page-title-regardless-of-what-subpage-you-are-on/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 14:20:45 +0000</pubDate>
		<dc:creator>Larry Ngaosi</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/a001/?p=67</guid>
		<description><![CDATA[This hack is useful for peoples who working with WordPress as a CMS and wanting to be easily able to display parent page title on a subpage.]]></description>
			<content:encoded><![CDATA[<p>This hack is useful for peoples who working with WordPress as a CMS and wanting to be easily able to display parent page title on a subpage.</p>
<p>Nothing hard at all: Just paste the following code where you’d like to display the parent page title:</p>
<p>&lt;?php  <br />
if($post-&gt;post_parent) {    <br />
$parent_title = get_the_title($post-&gt;post_parent);    <br />
echo $parent_title;  <br />
} else {    <br />
wp_title(&#8221;);  <br />
}  <br />
?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixwordpress.net/how-to-show-parent-page-title-regardless-of-what-subpage-you-are-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Get All Custom Fields From a Page or a Post</title>
		<link>http://www.fixwordpress.net/how-to-get-all-custom-fields-from-a-page-or-a-post/</link>
		<comments>http://www.fixwordpress.net/how-to-get-all-custom-fields-from-a-page-or-a-post/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 14:15:20 +0000</pubDate>
		<dc:creator>Larry Ngaosi</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/a001/?p=63</guid>
		<description><![CDATA[Sometimes you may need to get all custom fields from a specific post or page. Apply following function that do the job. function all_my_customs($id = 0){ //if we want to run this function on a page of our choosing them the next section is skipped. //if not it grabs the ID of the current page [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you may need to get all custom fields from a specific post or page. Apply following function that do the job.</p>
<p>function all_my_customs($id = 0){<br />
  //if we want to run this function on a page of our choosing them the next section is skipped.<br />
  //if not it grabs the ID of the current page and uses it from now on.<br />
  if ($id == 0) :<br />
    global $wp_query;<br />
    $content_array = $wp_query-&gt;get_queried_object();<br />
    $id = $content_array-&gt;ID;<br />
  endif;</p>
<p>  //knocks the first 3 elements off the array as they are WP entries and i dont want them.<br />
  $first_array = array_slice(get_post_custom_keys($id), 3);</p>
<p>  //first loop puts everything into an array, but its badly composed<br />
  foreach ($first_array as $key =&gt; $value) :<br />
    $second_array[$value] =  get_post_meta($id, $value, FALSE);</p>
<p>    //so the second loop puts the data into a associative array<br />
    foreach($second_array as $second_key =&gt; $second_value) :<br />
      $result[$second_key] = $second_value[0];<br />
    endforeach;<br />
  endforeach;</p>
<p>  //and returns the array.<br />
  return $result;<br />
}</p>
<p>Once done, you can use the function like this:</p>
<p>$result = all_my_customs();<br />
echo $result['my_meta_key'];</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixwordpress.net/how-to-get-all-custom-fields-from-a-page-or-a-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allow More Time For Slow Servers to Upgrade WordPress</title>
		<link>http://www.fixwordpress.net/allow-more-time-for-slow-servers-to-upgrade-wordpress/</link>
		<comments>http://www.fixwordpress.net/allow-more-time-for-slow-servers-to-upgrade-wordpress/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 14:08:39 +0000</pubDate>
		<dc:creator>Larry Ngaosi</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/a001/?p=61</guid>
		<description><![CDATA[WordPress auto download/install is a very nice feature, but sometimes a few problems can appear. One of them is that WordPress don’t manage to download the new version. This happens on slow servers. Here is how to solve it. To apply this hack, you’ll have to edit one of WordPress core files. Keep in mind [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress auto download/install is a very nice feature, but sometimes a few problems can appear. One of them is that WordPress don’t manage to download the new version. This happens on slow servers. Here is how to solve it.</p>
<p>To apply this hack, you’ll have to edit one of WordPress core files. Keep in mind that it is never recommended. This hack should be applied only if you have problems while auto-upgrading WordPress.</p>
<p>Open the wp-admin/includes/files.php file and go to line 448. You’ll see the following:</p>
<p>$response = wp_remote_get($url, array(&#8216;timeout&#8217; =&gt; 60));</p>
<p>To allow more downloading time, simply change the 60 with a greater value, as for example:</p>
<p>$response = wp_remote_get($url, array(&#8216;timeout&#8217; =&gt; 120));</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixwordpress.net/allow-more-time-for-slow-servers-to-upgrade-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Speed Up Your Blog&#039;s Loading Speed</title>
		<link>http://www.fixwordpress.net/how-to-speed-up-your-blogs-loading-speed/</link>
		<comments>http://www.fixwordpress.net/how-to-speed-up-your-blogs-loading-speed/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 14:03:54 +0000</pubDate>
		<dc:creator>Larry Ngaosi</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/a001/?p=55</guid>
		<description><![CDATA[WordPress, by default, comes uncompressed and sends the uncompressed HTML to the visitor’s browser. With one line of code added to your header, you can compress WordPress’s output by up to 75%. By using zlib compression technology, you can harness the power of PHP and reduce your blog’s load time and increase the load speed! [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress, by default, comes uncompressed and sends the uncompressed HTML to the visitor’s browser. With one line of code added to your header, you can compress WordPress’s output by up to 75%. By using zlib compression technology, you can harness the power of PHP and reduce your blog’s load time and increase the load speed!</p>
<p>First, place the following code in a file and call it “test.php” and then upload it to the root of your blog directory:</p>
<p>&lt;?php phpinfo(); ?&gt;</p>
<p>Make sure that “zlib” is enabled by your hosting provider.<br />
Second, place the following code in your header (above the DOCTYPE):</p>
<p>&lt;?php<br />
ini_set(&#8216;zlib.output_compression&#8217;, &#8217;On&#8217;);<br />
ini_set(&#8216;zlib.output_compression_level&#8217;, &#8217;1&#8242;);<br />
?&gt;</p>
<p>Check <a href="Port80Software.com">Port80Software.com</a> to ensure you are compressing your output.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixwordpress.net/how-to-speed-up-your-blogs-loading-speed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

