<?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>Website-Timely-Tips.Net &#187; WordPress</title>
	<atom:link href="http://website-timely-tips.net/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://website-timely-tips.net</link>
	<description>wordpress tips, mysql tricks</description>
	<lastBuildDate>Wed, 07 Jul 2010 22:38:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Code Not Showing in WordPress Posts</title>
		<link>http://website-timely-tips.net/code-not-showing-wordpress-posts/</link>
		<comments>http://website-timely-tips.net/code-not-showing-wordpress-posts/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 12:35:13 +0000</pubDate>
		<dc:creator>webtime</dc:creator>
				<category><![CDATA[Time Management]]></category>
		<category><![CDATA[Webmastering]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://website-timely-tips.net/?p=179</guid>
		<description><![CDATA[Are you surprised that your code is not showing properly in a WordPress post, even after you used the code tag? The code tag only changes the font so that your code appears different from the rest of your text. &#8230; <a href="http://website-timely-tips.net/code-not-showing-wordpress-posts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Are you surprised that your code is not showing properly in a WordPress post, even after you used the <strong>code tag</strong>?</p>
<p>The code tag only changes the font so that your code appears different from the rest of your text. It does not fix it so that WordPress won&#8217;t recognize your code. To handle this in a very efficient way, use the service at <a rel="nofollow" href="http://website-timely-tips.net/goto/htmlizer/179/1">htmlizer</a>.</p>
<p>Just copy and paste your code fragments into the provided box and hit the &#8220;htmlize!&#8221; button. The code characters like &lt;, &gt;, &quot; will be replaced with their HTML special characters so that the code is not perceived by the WordPress engine as actual code.</p>
]]></content:encoded>
			<wfw:commentRss>http://website-timely-tips.net/code-not-showing-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two Sidebars with Widgets for WordPress 2.8</title>
		<link>http://website-timely-tips.net/two-sidebars-widgets-wordpress/</link>
		<comments>http://website-timely-tips.net/two-sidebars-widgets-wordpress/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 12:25:37 +0000</pubDate>
		<dc:creator>webtime</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Webmastering]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://website-timely-tips.net/?p=175</guid>
		<description><![CDATA[I needed to make a second sidebar for a WordPress theme &#8211; starting from a simple one-sidebar theme. It is a three-step process to get a sidebar recognized by WordPress so that it shows on your screen. Also, each sidebar &#8230; <a href="http://website-timely-tips.net/two-sidebars-widgets-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I needed to make a second sidebar for a WordPress theme &#8211; starting from a simple one-sidebar theme. It is a three-step process to get a sidebar recognized by WordPress so that it shows on your screen. Also, each sidebar must have its content listed in a separate file, like sidebar.php.</p>
<p>First, you have to tell WordPress that there are two sidebars for your theme. This step is called registering the sidebar. The important point here is to make sure that each sidebar is given a different name. Here, two sidebars are designated. They will have the names sidebar 1 and sidebar 2. Put this code in functions.php.</p>
<p>&lt;?php<br />
if (function_exists(&quot;register_sidebars&quot;)) {<br />
        register_sidebars(2, array(&quot;name&quot; =&gt; &quot;sidebar %d&quot;));<br />
}<br />
?&gt;</p>
<p>Alternatively, the functions.php code could use separate lines, one for each sidebar, like so:</p>
<p>&lt;?php<br />
if ( function_exists(&#8216;register_sidebar&#8217;) )<br />
    register_sidebar(sidebar-one);<br />
    register_sidebar(sidebar-two);<br />
?&gt;</p>
<p>You could have more than one sidebar. Just make sure each one is registered with a new name.</p>
<p>The content for each sidebar will be in separate files, such as sidebar1.php and sidebar2.php.</p>
<p>Second, each sidebar must be included in the index, page, or single pages where each sidebar is to appear. Use a template path in an include statement with the name of each sidebar file, like so:</p>
<p>&lt;?php include (TEMPLATEPATH . &#8216;/sidebar1.php&#8217;); ?&gt;<br />
&lt;?php include (TEMPLATEPATH . &#8216;/sidebar2.php&#8217;); ?&gt;</p>
<p>Third, the sidebar.php files must pass the name of the sidebar when calling the dynamic_sidebar function. At the top of each sidebar.php file, insert this code:</p>
<p>&lt;?php if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8216;sidebar 1&#8242;) ) : ?&gt;</p>
<p>Here, we pass the name of the sidebar (sidebar 1), not the filename (sidebar1.php).</p>
<p>The top of the sidebar1.php file is:</p>
<p>&lt;div class=&quot;sidebar&quot;&gt;<br />
&lt;ul&gt;<br />
&lt;?php if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8216;sidebar 1&#8242;) ) : ?&gt;</p>
<p>followed by a few list-items, closing unordered list and closing div tags. Sidebar2.php is as follows in its entirety:</p>
<p>&lt;div class=&quot;sidebar2&quot;&gt;<br />
&lt;ul&gt;<br />
&lt;?php if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8216;sidebar 2&#8242;) ) : ?&gt;<br />
&lt;?php endif; ?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;</p>
<p>There you have it! Now all there is to do is to go back to the WP admin panel &gt; appearance &gt; widgets and select the widgets that you need for each sidebar. Now, your WordPress theme has two sidebars!</p>
]]></content:encoded>
			<wfw:commentRss>http://website-timely-tips.net/two-sidebars-widgets-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cleaker Theme Modified to Include Archive Index via SRG Clean Archives Plugin</title>
		<link>http://website-timely-tips.net/cleaker-theme-modified-to-include-archive-index-via-srg-clean-archives-plugin/</link>
		<comments>http://website-timely-tips.net/cleaker-theme-modified-to-include-archive-index-via-srg-clean-archives-plugin/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 18:21:23 +0000</pubDate>
		<dc:creator>webtime</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Webmastering]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[cleaker]]></category>
		<category><![CDATA[modify]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://website-timely-tips.net/cleaker-theme-modified-to-include-archive-index-via-srg-clean-archives-plugin/</guid>
		<description><![CDATA[The new Cleaker theme for WSTT looked great out-of-the-box as they say, but like most computer geeks I just had to tweak it a little bit. Here&#8217;s the changes made so far to the widgetized version that you can download &#8230; <a href="http://website-timely-tips.net/cleaker-theme-modified-to-include-archive-index-via-srg-clean-archives-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The new Cleaker theme for WSTT looked great <em>out-of-the-box</em> as they say, but like most computer geeks I just had to tweak it a little bit. Here&#8217;s the changes made so far to the widgetized version that you can <a rel="nofollow" href="http://website-timely-tips.net/goto/download_from_pomomusings/112/1">download from pomomusings</a>.</p>
<ol>
<li>Removed search box from header. Actually did not remove the code, but commented out the lines for the search form in header.php.</li>
<li>Used widgets to create new content for both sidebars. Added a couple of text boxes to hold adsense codes. </li>
<li>Added a plugin for the archives page to work. Archives-index page did not work out-of-the-box and required the plugin called <strong>SRG Clean Archives</strong>. Downloaded <a rel="nofollow" href="http://website-timely-tips.net/goto/Clean_Archives_4_2/112/2">Clean Archives 4.2</a> because I&#8217;ve updated to the latest WordPress (version 2.3.2). Uploaded the &#8220;srg_clean_archives&#8221; folder to the plugins folder and activated it.</li>
</ol>
<p>That&#8217;s all for now. So, who else has made changes to this great theme?</p>
]]></content:encoded>
			<wfw:commentRss>http://website-timely-tips.net/cleaker-theme-modified-to-include-archive-index-via-srg-clean-archives-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Year, New Theme! Here&#039;s How to Backup and Update WordPress.</title>
		<link>http://website-timely-tips.net/new-year-new-theme-heres-how-to-backup-and-update-wordpress/</link>
		<comments>http://website-timely-tips.net/new-year-new-theme-heres-how-to-backup-and-update-wordpress/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 20:18:44 +0000</pubDate>
		<dc:creator>webtime</dc:creator>
				<category><![CDATA[Webmastering]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://website-timely-tips.net/new-year-new-theme-heres-how-to-backup-and-update-wordpress/</guid>
		<description><![CDATA[Upgrade your blog with the steps found on this page from the WordPress codex: Special link for updating WordPress. Take each step in turn and make sure to backup everything and you&#8217;ll be ok. After you update your blog to &#8230; <a href="http://website-timely-tips.net/new-year-new-theme-heres-how-to-backup-and-update-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Upgrade your blog with the steps found on this page from the WordPress codex:</p>
<p><a rel="nofollow" href="http://website-timely-tips.net/goto/Special_link_for_updating_WordPress/109/1">Special link for updating WordPress</a>.</p>
<p>Take each step in turn and make sure to backup everything and you&#8217;ll be ok.</p>
<p>After you update your blog to the most recent version of WordPress, why not <a rel="nofollow" href="http://website-timely-tips.net/goto/try_a_new_theme/109/2">try a new theme</a>? The <a rel="nofollow" href="http://website-timely-tips.net/goto/theme_viewer_over_at_WordPress/109/3">theme viewer over at WordPress</a> has grown to include a wide selection of themes. All searchable by color scheme, number of columns, fixed width or fluid width, widget-ready, and so on!</p>
]]></content:encoded>
			<wfw:commentRss>http://website-timely-tips.net/new-year-new-theme-heres-how-to-backup-and-update-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
