<?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>Krio Media &#187; WordPress</title>
	<atom:link href="http://www.krio.me/category/development-info/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.krio.me</link>
	<description></description>
	<lastBuildDate>Wed, 01 Jun 2011 16:24:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>My Links Central: WordPress Widget For SEO</title>
		<link>http://www.krio.me/my-links-central-wordpress-widget-seo/</link>
		<comments>http://www.krio.me/my-links-central-wordpress-widget-seo/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 01:13:56 +0000</pubDate>
		<dc:creator>Kevin Rio</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.krio.me/?p=950</guid>
		<description><![CDATA[My Links Central is a WordPress widget that allows you to manage multiple WordPress sidebars from one central administration panel. I developed this widget for an SEO expert who wanted to be able to manage links on his 100+ blogs without having to update every blog when he wanted to add links. What It Does [...]]]></description>
			<content:encoded><![CDATA[<p>My Links Central is a WordPress widget that allows you to manage multiple WordPress sidebars from one central administration panel. I developed this widget for an SEO expert who wanted to be able to manage links on his 100+ blogs without having to update every blog when he wanted to add links.<span id="more-950"></span></p>
<h3>What It Does</h3>
<p>My Links Central makes it easy to manage your back-links on your content sites.</p>
<ul>
<li>Manage sidebars of multiple WordPress sites from one control panel</li>
<li>Easily add links to one central file that all widgets will feed from</li>
<li>Specifically made so that SEO experts can easily create links for all of their existing blogs</li>
<li>Add both a URL and the Anchor tag text. The title tag is automatically taken from the anchor text</li>
<li>No extra database needed. Everything is XML driven</li>
<li>Easily style the links using the class MyLinksCentral as an unordered list</li>
</ul>
<h3 style="margin-top: 15px;">Usage</h3>
<p>There are two separate zip files. The first is the widget, which you install into WordPress. The second is the administrator panel that you upload via FTP to your main web server.</p>
<h3 style="margin-top: 15px;">Configuring the Admin Panel</h3>
<ul>
<li>Upload the administrator files to a folder via FTP to whatever server you want</li>
<li>Navigate to the LinksControl.php file via your web browser</li>
<li>Click the &#8216;Add&#8217; button and input the URL and Title of the links you want to add</li>
</ul>
<h3 style="margin-top: 15px;">Configuring the Widget</h3>
<ul>
<li>Install the widget via the plugins admin panel and go to the widgets page and drag it over</li>
<li>In the XML file box, put the absolute file path to the XML file that is located with the admin panel</li>
</ul>
<h3 style="margin-top: 15px;">Download</h3>
<p><a title="My Links Central Admin Panel" href="http://www.krio.me/files/MyLinksCentralAdmin.zip">Download the Admin Panel</a></p>
<p><a title="My Links Central Widget" href="http://www.krio.me/files/MyLinksCentral.zip">Download the Widget</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.krio.me/my-links-central-wordpress-widget-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Tip: Get Current Category Name</title>
		<link>http://www.krio.me/wordpress-tip-get-current-category-name/</link>
		<comments>http://www.krio.me/wordpress-tip-get-current-category-name/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 21:01:31 +0000</pubDate>
		<dc:creator>Kevin Rio</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.krio.me/?p=681</guid>
		<description><![CDATA[A quick way to get the current category in your WordPress blog is by using this code: foreach((get_the_category()) as $cat) { $nameOfCategory = $cat-&#62;cat_name; } This small script will help you to exclude certain blog posts from showing on certain main categories. It was a life saver when developing the Olympus-Tours blog.]]></description>
			<content:encoded><![CDATA[<p>A quick way to get the current category in your WordPress blog is by using this code:<span id="more-681"></span></p>
<pre class="brush: php; title: ;">

foreach((get_the_category()) as $cat) {
      $nameOfCategory = $cat-&gt;cat_name;
}
</pre>
<p>This small script will help you to exclude certain blog posts from showing on certain main categories. It was a life saver when developing the <a title="Olympus Tours Blog" href="http://www.krio.me/olympus-tours-blog/">Olympus-Tours blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krio.me/wordpress-tip-get-current-category-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Limit Archive Links in The Widget Sidebar</title>
		<link>http://www.krio.me/how-to-limit-archive-links-in-widget-sidebar/</link>
		<comments>http://www.krio.me/how-to-limit-archive-links-in-widget-sidebar/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 21:38:21 +0000</pubDate>
		<dc:creator>Kevin Rio</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.krio.me/?p=401</guid>
		<description><![CDATA[I created this tutorial after being asked several times by different WordPress themers how they can stop the WordPress archives widget from taking over their page, due to so many past posts. Is your WordPress sidebar getting messy? Use these steps to limit the number of archive links that appear in your WordPress widget sidebar. [...]]]></description>
			<content:encoded><![CDATA[<p>I created this tutorial after being asked several times by different WordPress themers how they can stop the WordPress archives widget from taking over their page, due to so many past posts.<span id="more-401"></span></p>
<h3>Is your WordPress sidebar getting messy?</h3>
<p>Use these steps to limit the number of archive links that appear in your WordPress widget sidebar.</p>
<h1>Step 1</h1>
<p>Navigate to your /wp-includes folder in your WordPress installation directory and open the default-widgets.php file.</p>
<h1>Step 2</h1>
<p>Find this line, which is on line 239 in Version 2.9.1:</p>
<p>&lt;?php wp_get_archives(apply_filters(&#8216;widget_archives_args&#8217;, array(&#8216;type&#8217; =&gt; &#8216;monthly&#8217;, &#8216;show_post_count&#8217; =&gt; $c))); ?&gt;</p>
<h1>Step 3</h1>
<p>Change that line to:</p>
<p>&lt;?php wp_get_archives(apply_filters(&#8216;widget_archives_args&#8217;, array(&#8216;type&#8217; =&gt; &#8216;monthly&#8217;, &#8216;show_post_count&#8217; =&gt; $c, &#8216;limit&#8217; =&gt; 5))); ?&gt;</p>
<p>Where , &#8216;limit&#8217; =&gt; 5 is added to signify how many archive posts you want to show.</p>
<h1>Step 4</h1>
<p>Now upload your default-widgets.php file to the server and check your sidebar!</p>
<h1>Done limiting your widget archive listings</h1>
<p>You should now only see however many archive posts you limited WordPress to showing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krio.me/how-to-limit-archive-links-in-widget-sidebar/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

