<?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>quirm.net &#187; beginners</title>
	<atom:link href="http://quirm.net/tag/beginners/feed/" rel="self" type="application/rss+xml" />
	<link>http://quirm.net</link>
	<description>wordpress &#38; web design</description>
	<lastBuildDate>Wed, 01 Feb 2012 17:39:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Customising The Default WordPress Theme: 2</title>
		<link>http://quirm.net/2009/10/04/customising-the-default-wordpress-theme-2/</link>
		<comments>http://quirm.net/2009/10/04/customising-the-default-wordpress-theme-2/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 12:03:41 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=1253</guid>
		<description><![CDATA[Protecting Your Customisations If you have customised the WordPress default theme, all of your changes will be over-written the next time you upgrade WordPress. So you need to protect them now by creating your own custom theme. Using FTP (or whatever file management tool you have available), download the wp-content/themes/default folder to your machine. Rename&#8230;]]></description>
			<content:encoded><![CDATA[<h3>Protecting Your Customisations</h3>
<p>If you have customised the WordPress default theme, all of your changes will be over-written the next time you upgrade WordPress. So you need to protect them <strong>now</strong> by creating your own custom theme.</p>
<ol>
<li>Using <abbr title="File Transfer Protocol">FTP</abbr> (or whatever file management tool you have available), download the <code>wp-content/themes/default</code> folder to your machine.</li>
<li>Rename the downloaded folder &#8220;mytheme&#8221;.</li>
<li>Using a <strong>plain text editor</strong>, open style.css in this new folder and, at the very top of the file change:
<pre><code>Theme Name: WordPress Default
Theme URI: http://wordpress.org/</code></pre>
<p>to</p>
<pre><code>Theme Name: My Theme</code></pre>
</li>
<li>Upload the mytheme folder to wp-content/themes on your server.</li>
<li>In WordPress, navigate to Appearance / Themes and you should see that the My Theme is now available as a separate theme. Activate it.</li>
</ol>
<p>Your customisations are now protected against over-writing during an automatic upgrade. </p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2009/10/04/customising-the-default-wordpress-theme-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customising The Default WordPress Theme: 1</title>
		<link>http://quirm.net/2009/10/03/customising-the-default-wordpress-theme-1/</link>
		<comments>http://quirm.net/2009/10/03/customising-the-default-wordpress-theme-1/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 23:03:52 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=1247</guid>
		<description><![CDATA[Adding A Sidebar To Every Page Within the WordPress Administration area, navigate to Appearance / Editor. Select single.php and change: &#60;div id="content" class="widecolumn" role="main"&#62; to &#60;div id="content" class="narrowcolumn"&#62; Then change: &#60;?php get_footer(); ?&#62; to: &#60;?php get_sidebar(); ?&#62; &#60;?php get_footer(); ?&#62; Repeat the last 2 steps for archives.php, links.php &#038; image.php]]></description>
			<content:encoded><![CDATA[<h3>Adding A Sidebar To Every Page</h3>
<ol>
<li>Within the WordPress Administration area, navigate to Appearance / Editor.</li>
<li>Select <code>single.php</code> and change:
<pre><code>&lt;div id="content" class="widecolumn" role="main"&gt;
</code></pre>
<p>to </p>
<pre><code>&lt;div id="content" class="narrowcolumn"&gt;</code></pre>
</li>
<li>Then change:
<pre><code>&lt;?php get_footer(); ?&gt;</code></pre>
<p>to:</p>
<pre><code>&lt;?php get_sidebar(); ?&gt;
&lt;?php get_footer(); ?&gt;</code></pre>
</li>
</ol>
<p>Repeat the last 2 steps for <code>archives.php</code>, <code>links.php</code> &#038; <code>image.php</code></p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2009/10/03/customising-the-default-wordpress-theme-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using WordPress Support Forums</title>
		<link>http://quirm.net/2009/09/04/using-wordpress-support-forums/</link>
		<comments>http://quirm.net/2009/09/04/using-wordpress-support-forums/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 12:38:16 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=1100</guid>
		<description><![CDATA[You&#8217;ve got a problem and need help finding an answer. Or you want to make changes to your theme. Or you&#8217;re a coder looking for a fresh viewpoint on a template that you&#8217;re developing. Who are you going to turn to? The WordPress Support Forums. But your chances of getting an answer will be significantly&#8230;]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ve got a problem and need help finding an answer. Or you want to make changes to your theme. Or you&#8217;re a coder looking for a fresh viewpoint on a template that you&#8217;re developing.</p>
<p>Who are you going to turn to?</p>
<p>The <a href="http://wordpress.org/support/">WordPress Support Forums</a>.</p>
<p>But your chances of getting an answer will be significantly improved if you follow a few simple points:</p>
<p><span id="more-1100"></span></p>
<ul class="double-spaced">
<li><span class="bold">Search</span> the <a href="http://codex.wordpress.org/">WordPress Codex</a> first. There is plenty of documentation available and it is being constantly updated. Use it!</li>
<li><span class="bold">Search</span> the WordPress forums. <strong>Don&#8217;t</strong> just post a question without checking to see if it&#8217;s been answered before. The forums are extremely busy and no-one is being paid to help, or answer, you. Do some of your own research first.</li>
<li><span class="bold">Don&#8217;t</span> post questions or complaints relating to free <a href="http://wordpress.com/">wordpress.com</a> blogs. The WordPress Support forums are primarily for self-hosted blogs, so you won&#8217;t find much in the way of help there.</li>
<li>If you can&#8217;t find an answer yourself, <span class="bold">read</span> the <a href="http://wordpress.org/support/topic/68664?replies=6">Forum Rules</a> before posting.</li>
<li>Post your query in the most appropriate forum. <span class="bold">Don&#8217;t</span> post the same question in multiple forums. That&#8217;s just one way to cause severe aggravation and reduce the chances of receiving any responses.</li>
<li>Give your post an <span class="bold">accurate Topic Title</span>. A title of &#8220;Help!&#8221; isn&#8217;t much use.</li>
<li>If your problems relate to a specific theme or plugin, <span class="bold">tag</span> your post with the theme, or plugin, name.</li>
<li>Remember to indicate what <span class="bold">version</span> of WordPress you are using.</li>
<li>Post a <span class="bold">brief summary</span> of your problem &#8212; including any troubleshooting steps you&#8217;ve already tried. Include the address of your site, if possible &#8212; not a link to a theme. There are currently more than 850 themes in the WordPress Themes directory. Funnily enough, most people aren&#8217;t intimately familiar with every one of them&#8230;</li>
<li><span class="bold">Don&#8217;t</span> include huge chunks of code in your post. For larger blocks of code, use the <a href="http://wordpress.pastebin.ca/">WordPress pastebin</a>. It makes life easier for everyone.</li>
<li><span class="bold">Don&#8217;t</span> bump topics. Those with a single post are prioritised, so bumping is a one way of ensuring that your topic will be pushed <strong>down</strong> the queue and your question may not be answered at all.</li>
<li><span class="bold">Don&#8217;t</span> ask people to completely re-design your theme for you. Many of those who help out on the forums are professional web developers. Asking them to work for free simply isn&#8217;t on.</li>
<li><span class="bold">Don&#8217;t</span> complain if the answers you receive are technical. Sometimes the only possible solution involves coding of one sort or another.
<p>If you are running a self-hosted WordPress blog, you will probably need to undertake some coding at one point or another. So you can either roll up your sleeves and dive in. Or you can <a href="http://blackwidows.co.uk/bitesize/wordpress-services/">pay someone else to do it</a> instead.</p>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2009/09/04/using-wordpress-support-forums/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic WordPress Troubleshooting</title>
		<link>http://quirm.net/2009/09/04/basic-wordpress-troubleshooting/</link>
		<comments>http://quirm.net/2009/09/04/basic-wordpress-troubleshooting/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 10:15:08 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=1091</guid>
		<description><![CDATA[Something has gone seriously wrong with your blog. You may have recently updated to the latest version of WordPress, upgraded, or installed, a new plugin or switched themes. How do you start to track down and fix the problem? 1. Plugin Issues Plugins are the most common cause of WordPress problems. Especially if you&#8217;ve recently&#8230;]]></description>
			<content:encoded><![CDATA[<p>Something has gone seriously wrong with your blog. You may have recently updated to the latest version of WordPress, upgraded, or installed, a new plugin or switched themes.</p>
<p>How do you start to track down and fix the problem?</p>
<p><span id="more-1091"></span></p>
<h3>1. Plugin Issues</h3>
<p>Plugins are the most common cause of WordPress problems. Especially if you&#8217;ve recently upgraded to WordPress 2.8 or installed some new plugins.</p>
<p>Deactivate <strong>all</strong> of your plugins to see if this resolves the problem. Yes &#8211; we know that you can&#8217;t live without every single one of your plugins. But what do you want? Lots of essentially useless plugins or a working blog? </p>
<p>If the mass plugin deactivation resolves your problem, re-activate the plugins one by one &#8211; checking the site <strong>thoroughly</strong> after each re-activation. Eventually you will find the problematic plugin(s) &#8211; at which point it will be time to look for a <a href="http://wordpress.org/extend/plugins/">compatible replacement</a>.</p>
<p>If a mass plugin deactivation didn&#8217;t work or the problems are so severe that you can&#8217;t even access your Dashboard, try <a href="http://codex.wordpress.org/FAQ_Troubleshooting#How_to_deactivate_all_plugins_when_not_able_to_access_the_administrative_menus.3F">resetting the plugins folder via <abbr title="File Transfer Protocol">FTP</abbr> or phpMyAdmin</a>. Sometimes, an apparently inactive plugin can still cause problems. If you can manage the phpMyAdmin approach, use it. Experience suggests that it offers the best success rate in eliminating problematic plugins. </p>
<h3>2. Theme Issues</h3>
<p>The more feature-rich the theme, the more likely it is that one or more of the features can cause problems elsewhere.</p>
<p>Switch to the default theme to rule out any theme-related problems.</p>
<p>If the problems are so severe that you can&#8217;t even access your Dashboard &#8211; let alone change themes, rename your current theme&#8217;s folder using FTP. <code>You'll find it in wp-content/themes/theme_name</code>. If in doubt, rename all theme folders except <code>default</code> and <code>classic</code>.</p>
<p>Your blog should automatically switch to the default theme. If this resolves your problem, then it was theme-specific. Delete your old theme and <a href="http://wordpress.org/extend/themes/">find a new one</a>.</p>
<h3>3. Permalink Problems</h3>
<p>If your Page, Post or Category links are all broken, reset your custom permalinks back to the default setting via Settings &#8211; Permalinks. If this works, then it&#8217;s likely that you mis-configured your permalinks. Ensure that you <a href="http://codex.wordpress.org/Using_Permalinks">understand how to set up custom permalinks</a> before trying again.</p>
<h3>4. Known Browser Issues</h3>
<p>If you&#8217;re using Firefox 3 and have Google Gears installed, deactivate/delete this add-on. It&#8217;s not compatible with Firefox 3 and can cause problems in WordPress.</p>
<h3>5. Research The Problem</h3>
<p>Search the <a href="http://wordpress.org/support/">WordPress forums</a>. <strong>Don&#8217;t</strong> just post a question without checking to see if it&#8217;s been answered before. The forums are extremely busy and no-one is being paid to help, or answer, you. Do some of your own research first.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2009/09/04/basic-wordpress-troubleshooting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No Dates On Some WordPress Posts</title>
		<link>http://quirm.net/2009/08/26/no-dates-on-some-wordpress-posts/</link>
		<comments>http://quirm.net/2009/08/26/no-dates-on-some-wordpress-posts/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 19:31:47 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=1198</guid>
		<description><![CDATA[If I make two posts on the same day, the older post doesn&#8217;t show a date whilst the new post does. Is there any way I can make the date show up on both posts? Try editing your theme files and changing all references for the_date() to the_time(). Likely candidates for editing include: index.php home.php&#8230;]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>If I make two posts on the same day, the older post doesn&#8217;t show a date whilst the new post does. Is there any way I can make the date show up on both posts?</p>
</blockquote>
<p><span id="more-1198"></span></p>
<p>Try editing your theme files and changing all references for <code>the_date()</code> to <code>the_time()</code>. </p>
<p>Likely candidates for editing include:</p>
<ul>
<li>index.php</li>
<li>home.php</li>
<li>archive.php</li>
<li>category.php</li>
<li>tag.php</li>
</ul>
<p>Plus any custom page templates present in your theme.</p>
<p>If you use the <code>the_date()</code>, the full date is only shown on the <strong>newest post</strong> on a given date. Using <code>the_time()</code>  will ensure that the date is displayed on <strong>all</strong> posts &#8211;  the date irrespective of how many posts you publish in any one day.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2009/08/26/no-dates-on-some-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Admin Missing in Author List</title>
		<link>http://quirm.net/2009/08/11/wordpress-admin-missing-in-author-list/</link>
		<comments>http://quirm.net/2009/08/11/wordpress-admin-missing-in-author-list/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 08:56:47 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=1158</guid>
		<description><![CDATA[I&#8217;m the Administrator on my WordPress site but my name doesn&#8217;t show up as an Author option when posting Occasionally, WordPress hiccups and loses the Administrator&#8217;s name in the Author dropdown. The fix is simple &#8212; if a little long winded. Set up a new, temporary, Admin user and make a note of the new&#8230;]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>I&#8217;m the Administrator on my WordPress site but my name doesn&#8217;t show up as an Author option when posting</p>
</blockquote>
<p>Occasionally, WordPress hiccups and loses the Administrator&#8217;s name in the Author dropdown. The fix is simple &#8212; if a little long winded.</p>
<p><span id="more-1158"></span></p>
<ol>
<li>Set up a new, temporary, Admin user and make a note of the new username and password.</li>
<li>Log out
<li>Log back in again as the new user.</li>
<li>Navigate to Users and select your old Admin profile.</li>
<li>Reduce your old profile down to Subscriber and save the new settings.</li>
<li>Update your old profile <strong>back</strong> to Admin again and save the new settings.</li>
<li>Log out
<li>Log back in again using your old Admin username.</li>
<li>Check that you can now see your name in the Author dropdown in Add/Edit Posts.</li>
<li>If all is well, delete the temporary Admin user. You no longer need it.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2009/08/11/wordpress-admin-missing-in-author-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activating A New WordPress Theme</title>
		<link>http://quirm.net/2009/08/09/activating-a-new-wordpress-theme/</link>
		<comments>http://quirm.net/2009/08/09/activating-a-new-wordpress-theme/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 12:44:58 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=1124</guid>
		<description><![CDATA[I&#8217;ve just downloaded a new theme and want to apply it to my WordPress blog. What do I have to do? If you&#8217;ve downloaded the theme to your own computer: Unpack the theme on your local machine. Upload the complete theme folder to wp-content/themes on your server using FTP (or whatever file manager is available&#8230;]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>I&#8217;ve just downloaded a new theme and want to apply it to my WordPress blog. What do I have to do?</p>
</blockquote>
<p>If you&#8217;ve downloaded the theme to your own computer:</p>
<ol>
<li>Unpack the theme on your local machine.</li>
<li>Upload the complete theme folder to <code>wp-content/themes</code> on your server using <abbr title="File Transfer Protocol">FTP</abbr> (or whatever file manager is available on your hosting account.</li>
<li>Login to the WordPress Dashboard and navigate to Appearance/Themes</li>
<li>Select your new theme</li>
<li>If the display in the popup window looks, OK, activate the theme (link in the top right of the popup window)</li>
<li>If the display in the window is blank, do <strong>not</strong> activate the new theme. It&#8217;s almost certainly incompatible with your version of WordPress.</li>
</ol>
<p>If you&#8217;ve downloaded the new theme via Appearance/Add New Themes in your WordPress Dashboard, skip straight to Step 4.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2009/08/09/activating-a-new-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Default Theme &amp; Header Images</title>
		<link>http://quirm.net/2009/08/08/wordpress-default-theme-header-images/</link>
		<comments>http://quirm.net/2009/08/08/wordpress-default-theme-header-images/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 11:52:48 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=1117</guid>
		<description><![CDATA[How do I add a graphic to the top banner in the default WordPress theme? If you amend the Default theme, the next time you upgrade WordPress, your changes will be overwritten. To avoid this happening, create a new customised theme and carry out all of your changes on this copy. Copy the default theme&#8230;]]></description>
			<content:encoded><![CDATA[<blockquote><p>How do I add a graphic to the top banner in the default WordPress theme?</p>
</blockquote>
<p>If you amend the Default theme, the next time you upgrade WordPress, your changes will be overwritten. To avoid this happening, create a new customised theme and carry out all of your changes on this copy.</p>
<p><span id="more-1117"></span></p>
<p>Copy the default theme folder and rename the new folder &#8216;mytheme&#8217;.</p>
<p>Edit <code>style.css</code> in the new folder and change:</p>
<pre><code>Theme Name: WordPress Default</code></pre>
<p>to</p>
<pre><code>Theme Name: My Theme</code></pre>
<p>Activate My Theme and then make the changes below:</p>
<ol>
<li>Create an image 760px by 200px, </li>
<li>Save it as kubrickheader.jpg</li>
<li>Upload your new image to wp-content/themes/mytheme/images </li>
</ol>
<p>Remember to press CTRL and F5 simultaneously when viewing the updated site. This should ensure that your web browser fetches a fresh copy of the site rather than serving up an out-dated copy from your own cache.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2009/08/08/wordpress-default-theme-header-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Dates Missing</title>
		<link>http://quirm.net/2009/08/07/wordpress-dates-missing/</link>
		<comments>http://quirm.net/2009/08/07/wordpress-dates-missing/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 16:43:29 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=1138</guid>
		<description><![CDATA[The date isn&#8217;t being displayed on some of my posts! The default behaviour for WordPress the_date() template tag is to only display the full date on the first post on a given day. Subsequent posts from the same day only display a time stamp. To ensure that the posting date is always displayed on all&#8230;]]></description>
			<content:encoded><![CDATA[<blockquote><p>The date isn&#8217;t being displayed on some of my posts!</p></blockquote>
<p>The default behaviour for WordPress <code>the_date()</code> template tag is to only display the full date on the <strong>first</strong> post on a given day. Subsequent posts from the same day only display a time stamp.</p>
<p><span id="more-1138"></span></p>
<p>To ensure that the posting date is always displayed on <strong>all</strong> posts, edit your theme files and replacing <code>the_date</code> with <code>the_time</code>. The list of files that you may need to edit may include:</p>
<ul>
<li>index.php</li>
<li>archive.php</li>
<li>search.php</li>
<li>single.php</li>
<li>tag.php</li>
<li>category.php (and any custom category template files)</li>
<li>page.php (and any custom page template files)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2009/08/07/wordpress-dates-missing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changes Not Displayed?</title>
		<link>http://quirm.net/2009/08/01/changes-not-displayed/</link>
		<comments>http://quirm.net/2009/08/01/changes-not-displayed/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 11:26:10 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=1087</guid>
		<description><![CDATA[I&#8217;ve made some changes to one of my Posts/Pages but, when I view the site, the changes aren&#8217;t visible. What did I do wrong? Chances are that you&#8217;re viewing an old copy of your recently updated page. Always press Ctrl and F5 simultaneously when viewing an updated Page or Post. This key combination (also known&#8230;]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>I&#8217;ve made some changes to one of my Posts/Pages but, when I view the site, the changes aren&#8217;t visible. What did I do wrong?</p>
</blockquote>
<p>Chances are that you&#8217;re viewing an old copy of your recently updated page.</p>
<p>Always press <kbd>Ctrl</kbd> and <kbd>F5</kbd> simultaneously when viewing an updated Page or Post.</p>
<p>This key combination (also known as a &#8220;hard refresh&#8221;) should ensure that your web browser fetches a <strong>fresh</strong> copy of the page rather than serving up an out-dated copy from your own browser cache.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2009/08/01/changes-not-displayed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

