<?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>Weblog Tools Collection &#187; links</title>
	<atom:link href="http://weblogtoolscollection.com/archives/tag/links/feed/" rel="self" type="application/rss+xml" />
	<link>http://weblogtoolscollection.com</link>
	<description>Weblog Tools Blogging Tools Blog</description>
	<lastBuildDate>Mon, 13 Feb 2012 13:00:19 +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>How Do You Do That?</title>
		<link>http://weblogtoolscollection.com/archives/2009/11/18/how-do-you-do-that/</link>
		<comments>http://weblogtoolscollection.com/archives/2009/11/18/how-do-you-do-that/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 12:55:08 +0000</pubDate>
		<dc:creator>James Dimick</dc:creator>
				<category><![CDATA[HOW-TO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Discussions]]></category>
		<category><![CDATA[Wordpress for Beginners]]></category>
		<category><![CDATA[WordPress Tips]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[questions]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[urls]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=7131</guid>
		<description><![CDATA[Ever wanted to do something in WordPress but just wasn&#8217;t sure how? In my experience this happens quite often, mostly with people new to WordPress. But, even the experts run into trouble sometimes. Today I thought I&#8217;d start a series of posts which will aim to explain how to do certain things in WordPress. Hopefully this will cover anything from quick tips and simple little functions, all the way up to more complex custom code and the like. So, stick around and you just might learn something. I think I&#8217;ll kick off the series with a couple simple ones&#8230; Why isn&#8217;t this plugin working with my theme? This is probably one of the most common issues I read about regarding WordPress. Sometimes even more experienced WPers can get this one wrong. Now, I&#8217;m not saying this is the solution to all problems between plugins and themes. Its just that this [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to do something in WordPress but just wasn&#8217;t sure how? In my experience this happens quite often, mostly with people new to WordPress. But, even the experts run into trouble sometimes. Today I thought I&#8217;d start a series of posts which will aim to explain how to do certain things in WordPress. Hopefully this will cover anything from quick tips and simple little functions, all the way up to more complex custom code and the like. So, stick around and you just might learn something. <img src='http://weblogtoolscollection.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I think I&#8217;ll kick off the series with a couple simple ones&#8230;</p>
<ul>
<li>
<h5>Why isn&#8217;t this plugin working with my theme?</h5>
<p>This is probably one of the most common issues I read about regarding WordPress. Sometimes even more experienced WP<em>ers</em> can get this one wrong. Now, I&#8217;m not saying this is the solution to <strong>all</strong> problems between plugins and themes. Its just that this little bugger is often the culprit.</p>
<p>Try ensuring that your theme has <code>&lt;?php <a href="http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks">wp_head</a>() ?&gt;</code> somewhere inside the <code>&lt;head&gt;</code> section of the document. Also, for that matter, make sure it has <code>&lt;?php <a href="http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks">wp_footer</a>() ?&gt;</code> somewhere in the foot of the document; Before the <code>&lt;/body&gt;</code> tag.</p>
<p>If your theme lacks these function calls many plugins that manipulate your theme will not be able to hook into the required areas. This can cause many headaches.</p>
<p>If you have no idea what I&#8217;m talking about, you may be better off having a coder buddy take a look at the theme for you. Or you can also contact the theme author, if the theme you use was created by someone else.</li>
<li>
<h5>How come my URLs are yucky?</h5>
<p>Or, &#8220;<em>How come my URLs look like <code>www.mysite.com?p=123</code> instead of <code>www&#8203;.mysite.&#8203;com&#8203;/my-&#8203;sample-&#8203;post/</code>?</em>&#8221;</p>
<p>This one is right up there with the previous question. I see it all the time. However, more and more web hosts these days support the &#8220;<em>nice</em>&#8221; URLs by default without requiring any extra effort. So, its just a matter of going into the WordPress control panel, changing your Permalink Settings and then saving. Unfortunately, we&#8217;re not all this lucky&#8230;</p>
<p>The first thing to try would be to contact your web host support and make sure they have whats known as <code>mod_rewrite</code> <em>(or similar functionality)</em> enabled on your account. If such functionality is not available on your web host, and you really need this feature, you may need to upgrade to a new host that does support it.</p>
<p>If your host does support it and has it enabled on your account, but it still doesn&#8217;t work, you can check that WordPress is able to write to the <code>.htaccess</code> file <em>(which is where all the &#8220;nice&#8221; URL magic happens)</em>.</p>
<p>For WordPress, on Unix-based systems, the htaccess file should be &#8220;<em><code><a href="http://codex.wordpress.org/Changing_File_Permissions#About_Chmod">CHMOD</a></code>ed</em>&#8221; to at least <code>666</code>. On Windows-based systems the procedure is a bit different. It can be different depending on your particular setup so I won&#8217;t go into that.</p>
<p>Basically, as was the case with the previous question, you may need to seek help to figure this out. If you don&#8217;t have a code buddy, get one! They are really great to have around. Just make sure you buy them a nice gift for their trouble. <img src='http://weblogtoolscollection.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </li>
<li>
<h5>Can I have a link to login to WordPress somewhere in my theme?</h5>
<p>Sure! It&#8217;s actually easier than you might think&#8230;</p>
<p>Some themes have a link for that already. But, there are also some that seem to lack this obvious and simple feature. You can easily add this to any theme yourself. No need for any programming knowledge. Simply add <code>&lt;?php <a href="http://codex.wordpress.org/Function_Reference/wp_loginout">wp_loginout</a>() ?&gt;</code> somewhere in your theme and you&#8217;re done. Easy right?</p>
<p>Another nice function along the same lines is <code>&lt;?php <a href="http://codex.wordpress.org/Function_Reference/wp_register">wp_register</a>() ?&gt;</code>, which will show a link to your registration page <em>(if your settings allow users to register)</em>, or a link to the WordPress control panel if you are already logged in.</p>
<p>Do note though that by default the link will be output wrapped inside <code>&lt;li&gt;</code> tags. This is so you can include the link in a list of other links, like a &#8220;<em>meta</em>&#8221; section. If, however, that is not how you want it to be output you can use the function like <code>&lt;?php wp_register('', '') ?&gt;</code>. That will simply output the link and nothing else.</p>
<p>An example of how to customize that is something like <code>&lt;?php wp_register('&lt;p&gt;', '&lt;/p&gt;') ?&gt;</code>, which will output the link wrapped in its own paragraph. Just change the opening and closing tags in the function to make it output how you want. Dead simple!</li>
</ul>
<p>That&#8217;s all for now&#8230; I hope it helps!</p>
<p style="background-color:#fae8d3;padding:5px 10px;margin-bottom:20px">Do you have a question about WordPress? Want to see it answered here on Weblog Tools Collection? If so, please <a href="http://weblogtoolscollection.com/archives/2007/02/06/contact-me/">send us an E-Mail</a> or drop a comment here. Your question just might be featured in the series!</p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2009/11/18/how-do-you-do-that/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Best Of WLTC Part 2</title>
		<link>http://weblogtoolscollection.com/archives/2008/12/28/best-of-wltc-part-2/</link>
		<comments>http://weblogtoolscollection.com/archives/2008/12/28/best-of-wltc-part-2/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 20:11:06 +0000</pubDate>
		<dc:creator>Jeff Chandler</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[best of]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[HOW-TO]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=4871</guid>
		<description><![CDATA[This is part two in the best of WeblogToolsCollection.com series (view part one here). The following links are posts which were published during 2008. These posts range from special news articles, guides, tutorials, reviews, opinion pieces and more. We look forward to continue bringing you the best WordPress information from across the web and wish you and yours a very safe, happy new year. July: How many Queries are too many? Evolution of WordPress: B2/Cafelog to WordPress 1.0 NEW WordPress Theme Directory WordPress iPhone App Now Available How to get featured in our Daily Releases Features Planned for WordPress 2.7 August: WordPress 2.7 Plugin Uninstall Methods If, Then, Else WP Plugin: &#8220;Where did they go from here&#8221; Updated What Does the Blurb on Top of Plugins Link Mean? Be Kind, Educate Safest Way to Include Plugin Code in Themes Stop Blaming The WordPress Team Tackle Plugin Compatibility Issues While Using [...]]]></description>
			<content:encoded><![CDATA[<p>This is part two in the best of WeblogToolsCollection.com series (<a href="http://weblogtoolscollection.com/archives/2008/12/27/best-of-wltc-part-1/">view part one here</a>). The following links are posts which were published during 2008. These posts range from special news articles, guides, tutorials, reviews, opinion pieces and more. We look forward to continue bringing you the best WordPress information from across the web and wish you and yours a very safe, happy new year.</p>
<h2>July:</h2>
<p><a href="http://weblogtoolscollection.com/archives/2008/07/12/how-many-queries-are-too-many/">How many Queries are too many?</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/07/14/evolution-of-wordpress-b2cafelog-to-wordpress-10/">Evolution of WordPress: B2/Cafelog to WordPress 1.0</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/07/18/new-wordpress-theme-directory/">NEW WordPress Theme Directory</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/07/22/wordpress-iphone-app-now-available/">WordPress iPhone App Now Available</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/07/22/how-to-get-featured-in-our-daily-releases/">How to get featured in our Daily Releases</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/07/31/features-plannwordpress-27/">Features Planned for WordPress 2.7</a></p>
<h2>August:</h2>
<p><a href="http://weblogtoolscollection.com/archives/2008/08/08/wordpress-27-plugin-uninstall-methods/">WordPress 2.7 Plugin Uninstall Methods</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/08/09/if-then-else/">If, Then, Else</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/08/15/wp-plugin-where-did-they-go-from-here-updated/">WP Plugin: &#8220;Where did they go from here&#8221; Updated</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/08/16/what-does-the-blurb-on-top-of-plugins-link-mean/">What Does the Blurb on Top of Plugins Link Mean?</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/08/18/be-kind-educate/">Be Kind, Educate</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/08/20/safest-way-to-include-plugin-code-in-themes/">Safest Way to Include Plugin Code in Themes</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/08/24/stop-blaming-the-wordpress-team/">Stop Blaming The WordPress Team</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/08/27/tackle-plugin-compatibility-issues-while-using-popular-libraries/">Tackle Plugin Compatibility Issues While Using Popular Libraries</a></p>
<h2>September:</h2>
<p><a href="http://weblogtoolscollection.com/archives/2008/09/02/first-look-at-wordpress-27/">First Look At WordPress 2.7</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/09/07/the-road-to-automation/">The Road To Automation</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/09/21/wordpress-weekly-is-back/">WordPress Weekly Is Back</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/09/23/comment-spam-with-more-kung-fu/">Comment Spam with more Kung Fu?</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/09/29/wltc-reader-survey-results/">WLTC Reader Survey Results</a></p>
<h2>October:</h2>
<p><a href="http://weblogtoolscollection.com/archives/2008/10/01/revolution-theme-going-open-source/">Revolution Theme Going Open Source</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/10/04/ian-stewart-on-child-themes-part-1/">Ian Stewart On Child Themes &#8211; Part 1</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/10/05/ian-stewart-on-child-themes-part-2/">Ian Stewart On Child Themes &#8211; Part 2</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/10/08/where-is-that-settings-page/">Where Is That Settings Page?</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/10/20/tutorial-creating-custom-write-panels-in-wordpress/">Tutorial: Creating Custom Write Panels in WordPress</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/10/26/moderate-comments-from-your-desktop/">Moderate Comments From Your Desktop</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/10/31/scary-wordpress-moments/">Scary WordPress Moments</a></p>
<h2>November:</h2>
<p><a href="http://weblogtoolscollection.com/archives/2008/11/04/are-your-theme%e2%80%99s-comments-wordpress-27-compatible/">Are your theme&#8217;s comments WordPress 2.7 compatible?</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/11/05/were-not-done-voting-yet/">We&#8217;re Not Done Voting Yet</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/11/09/this-time-its-personal/">This time, it&#8217;s personal</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/11/19/why-27-is-not-30/">Why 2.7 Is Not 3.0</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/11/27/giving-thanks/">Giving Thanks</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/11/30/drupal-59-to-wordpress-26/">Drupal 5.9 To WordPress 2.6</a></p>
<h2>December:</h2>
<p><a href="http://weblogtoolscollection.com/archives/2008/12/01/another-wordpress-milestone/">Another WordPress Milestone</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/12/03/enhanced-wordpress-theme-generator/">Enhanced WordPress Theme Generator</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/12/16/a-long-look-back/">A Long Look Back</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/12/16/easycomment-firefox-extension/">easyComment Firefox Extension</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/12/19/mastering-your-wordpress-27-theme-admin-area/">Mastering Your WordPress 2.7 Theme &amp; Admin Area</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/12/19/2hr-interview-with-matt-mullenweg/">2hr Interview With Matt Mullenweg</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/12/24/wordpress-forum-user-guide/">WordPress Forum User Guide</a></p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2008/12/28/best-of-wltc-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Of WLTC Part 1</title>
		<link>http://weblogtoolscollection.com/archives/2008/12/27/best-of-wltc-part-1/</link>
		<comments>http://weblogtoolscollection.com/archives/2008/12/27/best-of-wltc-part-1/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 23:13:13 +0000</pubDate>
		<dc:creator>Jeff Chandler</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[best of]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[HOW-TO]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=4856</guid>
		<description><![CDATA[As most of us know, WordPress development happens at a record pace and trying to keep up with everything is a daunting task. However, the team here at WLTC does a great job filtering all of the WordPress related content on the web to bring the best to you. During the course of a year, this content adds up. Some of it being news posts, how-to guides, reviews, breaking news, etc. So, since it&#8217;s near the end of the year, I thought I would take a trip through the WLTC Archive and revisit come classic posts from 2008. This series is broken up into two parts. The first part covers the months of January-June while part two takes care of July-December. When you browse through the links, let us know which one was your favorite or perhaps, which one has been the most helpful to you. January: Install WordPress Locally [...]]]></description>
			<content:encoded><![CDATA[<p>As most of us know, WordPress development happens at a record pace and trying to keep up with everything is a daunting task. However, the team here at WLTC does a great job filtering all of the WordPress related content on the web to bring the best to you. During the course of a year, this content adds up. Some of it being news posts, how-to guides, reviews, breaking news, etc. So, since it&#8217;s near the end of the year, I thought I would take a trip through the <a href="http://weblogtoolscollection.com/narchives/">WLTC Archive</a> and revisit come classic posts from 2008.</p>
<p>This series is broken up into two parts. The first part covers the months of <strong>January-June</strong> while part two takes care of <strong>July-December</strong>. When you browse through the links, let us know which one was your favorite or perhaps, which one has been the most helpful to you.</p>
<h2>January:</h2>
<p><a href="http://weblogtoolscollection.com/archives/2007/12/30/install-wordpress-locally-1-of-2/">Install WordPress Locally 1 Of 2</a> </p>
<p><a href="http://weblogtoolscollection.com/archives/2008/01/03/install-wordpress-locally-part-2-of-2/">Install WordPress Locally &#8211; Part 2 Of 2</a> </p>
<p><a href="http://weblogtoolscollection.com/archives/2008/01/07/uninstall-is-there-such-a-thing/">Uninstall &#8211; Is There Such A Thing?</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/01/09/wordpress-plugin-uninstall-tool/">WordPress Plugin Uninstall Tool</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/01/12/uninstalling-conundrum-part-2/">Uninstalling Conundrum Part 2</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/01/12/what-makes-a-wordpress-theme-premium/">What Makes a WordPress Theme Premium?</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/01/14/suggestions-for-plugin-standards/">Suggestions For Plugin Standards</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/01/16/configuring-wp-permalinks/">Configuring WP Permalinks</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/01/18/plugin-authors-organize-bug-reports-and-feature-requests-using-the-wordpress-plugin-repository/">Plugin Authors: Organize Bug Reports and Feature Requests Using the WordPress Plugin Repository</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/01/24/mobile-phone-optimized-wordpress/">Mobile Phone optimized WordPress</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/01/26/wptex-wordpress-to-pdf-ebook-with-latex/">WPTeX: WordPress to pdf ebook with LaTeX</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/01/29/what-is-wordcamp/">What Is WordCamp?</a></p>
<h2>February:</h2>
<p><a href="http://weblogtoolscollection.com/archives/2008/02/02/trackbacks-still-useful/">Trackbacks: Still Useful?</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/02/06/wordpress-as-a-contact-manager/">WordPress as a Contact Manager</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/02/09/adding-your-plugin-to-wp-extend-plugins-with-a-mac/">Adding Your Plugin to WP Extend Plugins With a Mac</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/02/11/wordpress-lingo/">WordPress Lingo</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/02/12/modsecurity-wordpress-admin-and-method-not-implemented/">ModSecurity, WordPress Admin and &#8220;Method Not Implemented&#8221;</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/02/14/wordpress-25-demo-site/">WordPress 2.5 Demo Site</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/02/14/wp-plugin-embedify/">WP Plugin: Embedify</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/02/23/printer-friendly-codex/">Printer Friendly Codex</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/02/24/new-twist-on-premium-wordpress-themes/">New Twist on Premium WordPress Themes</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/02/25/reformatting-wordpress/">Reformatting WordPress</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/02/29/interview-with-wpthemerkit/">Interview With WPThemerKit</a></p>
<h2>March:</h2>
<p><a href="http://weblogtoolscollection.com/archives/2008/03/03/gravatars-and-wordpress-25/">Gravatars and WordPress 2.5</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/03/04/add-wp-search-engines-to-ff/">Add WP Search Engines To FF</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/03/05/wordpress-theme-forecast/">WordPress Theme Forecast</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/03/06/who-comments-on-blogs-and-why/">Who Comments on Blogs, and Why?</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/03/08/managing-trackbacks-and-pingbacks-in-your-wordpress-theme/">Managing Trackbacks and Pingbacks in Your WordPress Theme</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/03/09/prepare-for-wp-25/">Prepare For WP 2.5</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/03/16/colorful-future-for-wp-25-admin/">Colorful Future For WP 2.5 Admin</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/03/19/where-you-download-a-theme-matters/">Where You Download a Theme Matters</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/03/23/23-to-25-database-changes/">2.3 to 2.5 Database Changes</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/03/26/10-plugins-to-combat-comment-spam/">10 Plugins To Combat Comment Spam</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/03/29/wordpress-25-released/">WordPress 2.5 Released</a></p>
<h2>April:</h2>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/01/faq-on-wordpress-25/">FAQ on WordPress 2.5</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/02/wordpress-25-upgrade-guides/">WordPress 2.5 Upgrade Guide(s)</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/04/ultimate-guide-to-the-wordpress-loop/">Ultimate Guide to the WordPress Loop</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/07/in-case-you-missed-it/">In Case You Missed It</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/08/vulnerable-wordpress-blogs-not-being-indexed/">Vulnerable WordPress Blogs Not Being Indexed</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/09/faq-on-wordpress-25-version-2/">FAQ On WordPress 2.5 Version 2</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/10/kubrick-header-generator/">Kubrick Header Generator</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/13/define-your-own-wordpress-loop-using-wp_query/">Define Your Own WordPress Loop Using WP_Query</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/13/how-to-only-retrieve-posts-with-custom-fields/">How to Only Retrieve Posts With Custom Fields</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/14/absolute-comments-plugin-video-review/">Absolute Comments &#8211; Plugin Video Review</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/18/yoo-guh-ler-blogging-profiles/">Yoo Guh Ler &#8211; Blogging Profiles</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/19/paging-and-custom-wordpress-loops/">Paging and Custom WordPress Loops</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/20/baltic-amber-admin-colour-schemes-for-wordpress-25/">Baltic Amber Admin Themes for WordPress 2.5</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/21/organize-series-plugin-video-review/">Organize Series &#8211; Plugin Video Review</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/25/batch-category-editor/">Batch Category Editor</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/27/what-happened-to-podpress/">What Happened To PodPress?</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/04/27/woopra-and-wordpress-unofficial-coolness-guide/">Woopra and WordPress: Unofficial Coolness Guide</a></p>
<h2>May:</h2>
<p><a href="http://weblogtoolscollection.com/archives/2008/05/03/create-your-own-admin-color-scheme/">Create Your Own Admin Color Scheme</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/05/04/error-management-for-wordpress-plugins/">Error Management for WordPress Plugins</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/05/06/a-unique-monotone/">A Unique Monotone</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/05/11/theme-designers-and-printcss/">Theme Designers And Print.CSS</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/05/11/15-websites-andor-services-i%e2%80%99d-actually-pay-for/">15 Websites and,or Services I&#8217;d Actually Pay For</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/05/12/chronological-order-of-comments-on-a-post/">Chronological Order of Comments on a Post</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/05/14/automattic-turns-21/">Automattic Turns 21</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/05/17/how-to-avoid-duplicate-posts/">How To: Avoid Duplicate Posts</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/05/19/24-ways-to-contribute-to-wordpress/">24 Ways To Contribute To WordPress</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/05/24/dashboard-widget-manager-video-review/">Dashboard Widget Manager &#8211; Video Review</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/05/29/removing-widthheight-from-the-image-uploader/">Removing Width/Height from the Image Uploader</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/05/30/ajax-edit-comments-part-deux/">Ajax Edit Comments Part Deux</a></p>
<h2>June:</h2>
<p><a href="http://weblogtoolscollection.com/archives/2008/06/04/b10gg3r-ar3-dang3r0u/">b10Gg3r$ aR3 DaNg3r0u$</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/06/04/30-people-to-follow-on-twitter/">31 People To Follow On Twitter</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/06/07/plugin-deactivation-issues-solved-with-actions-and-filters/">Plugin Deactivation Issues Solved With Actions and Filters</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/06/08/comment-remix-video-plugin-review/">Comment Remix &#8211; Video Plugin Review</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/06/11/hiding-advertisements-for-single-posts/">Hiding Advertisements For Single Posts</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/06/14/the-ownership-of-comments/">The Ownership Of Comments</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/06/17/all-in-one-seo-lives-on/">All In One SEO Lives On</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/06/17/what-is-the-simplest-wordpress-blog-youve-seen/">What is the simplest WordPress blog you&#8217;ve seen?</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/06/19/how-to-offsets-and-paging/">How to: Offsets and Paging</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/06/23/comment-license-made-easy/">Comment License Made Easy</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/06/25/how-much-would-you-pay/">How Much Would You Pay?</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/06/29/3-under-rated-plugins/">3 Under Rated Plugins</a></p>
<p><a href="http://weblogtoolscollection.com/archives/2008/06/30/what-you-need-to-know-about-wordpress-26/">What You Need To Know About WordPress 2.6</a></p>
<p><strong>Part 2 will be published on Sunday, December 28th.</strong> </p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2008/12/27/best-of-wltc-part-1/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Shortcode Generator</title>
		<link>http://weblogtoolscollection.com/archives/2008/04/12/shortcode-generator/</link>
		<comments>http://weblogtoolscollection.com/archives/2008/04/12/shortcode-generator/#comments</comments>
		<pubDate>Sat, 12 Apr 2008 21:29:55 +0000</pubDate>
		<dc:creator>Jeff Chandler</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Cool Scripts]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Hack]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[french]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[shortcode]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3414</guid>
		<description><![CDATA[Julien of Webinventif has created a shortcode generator for WordPress. Shortcode is like BBcode in that it provides the ability to use shortcuts to execute a block of code, rather than having to write out the block of code time and time again. Julien has made use of the new API calls within WordPress and with his shortcode generator, makes it easy as 1,2,3 to create your own custom shortcode. Although everything has been written in French, this generator looks promising. If anyone could translate this generator into English, I think there would be many WordPresser&#8217;s who would be grateful. Here is a screencast showcasing the generator in action. Shortcode generator from WebInventif.fr on Vimeo]]></description>
			<content:encoded><![CDATA[<p>Julien of Webinventif has created a <a title="http://www.webinventif.fr/generateur-de-shortcode-et-de-boutons-pour-wordpress/" href="http://www.webinventif.fr/generateur-de-shortcode-et-de-boutons-pour-wordpress/" target="_blank">shortcode generator for WordPress</a>. Shortcode is like BBcode in that it provides the ability to use shortcuts to execute a block of code, rather than having to write out the block of code time and time again. Julien has made use of the new API calls within WordPress and with his shortcode generator, makes it easy as 1,2,3 to create your own custom shortcode. Although everything has been written in French, this generator looks promising. If anyone could translate this generator into English, I think there would be many WordPresser&#8217;s who would be grateful.</p>
<p>Here is a screencast showcasing the generator in action.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="302" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="quality" value="best" /><param name="allowfullscreen" value="true" /><param name="scale" value="showAll" /><param name="src" value="http://www.vimeo.com/moogaloop.swf?clip_id=886550&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=" /><embed type="application/x-shockwave-flash" width="400" height="302" src="http://www.vimeo.com/moogaloop.swf?clip_id=886550&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=" scale="showAll" allowfullscreen="true" quality="best"></embed></object><br />
<a href="http://www.vimeo.com/886550/l:embed_886550">Shortcode generator</a> from <a href="http://www.vimeo.com/webinventif/l:embed_886550">WebInventif.fr</a> on <a href="http://vimeo.com/l:embed_886550">Vimeo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2008/04/12/shortcode-generator/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Configuring WP Permalinks</title>
		<link>http://weblogtoolscollection.com/archives/2008/01/16/configuring-wp-permalinks/</link>
		<comments>http://weblogtoolscollection.com/archives/2008/01/16/configuring-wp-permalinks/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 23:41:02 +0000</pubDate>
		<dc:creator>Jeff Chandler</dc:creator>
				<category><![CDATA[HOW-TO]]></category>
		<category><![CDATA[WordPress FAQs]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[prettypermalinks]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[seofriendlyurls]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://weblogtoolscollection.com/archives/2008/01/16/configuring-wp-permalinks/</guid>
		<description><![CDATA[Quite often, we hear of the terms (permalinks or pretty permalinks) which can also be called SEO-friendly URLs. These URLs are not only SEO friendly, but I believe they are human friendly as well. By default, WordPress uses URLs that look like a mishmash of letters and numbers with a few question marks mixed in for good measure. These types of links are frowned upon by search engine spiders and as a human being, they are also hard to read. Fortunately, WordPress provides a way for us to change this linking structure to something understandable. WordPress calls these Permalinks. Permalink settings can be configured a number of different ways. One of the ways to quickly configure permalinks is by choosing one of the Common Options. These common options include: Default &#8211; http://www.domain.com/?p=123 Date and name based &#8211; http://www.domain.com/2008/01/15/sample-post/ Numeric &#8211; http://www.domain.com/archives/123 There is no sense in using the default option [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://weblogtoolscollection.com/b2-img/2008/01/permalinks.png" alt="Pretty Permalinks" /></p>
<p>Quite often, we hear of the terms (permalinks or pretty permalinks) which can also be called SEO-friendly URLs. These URLs are not only SEO friendly, but I believe they are human friendly as well. By default, WordPress uses URLs that look like a mishmash of letters and numbers with a few question marks mixed in for good measure. These types of links are frowned upon by search engine spiders and as a human being, they are also hard to read.</p>
<p>Fortunately, WordPress provides a way for us to change this linking structure to something understandable. WordPress calls these Permalinks. Permalink settings can be configured a number of different ways. One of the ways to quickly configure permalinks is by choosing one of the <strong>Common Options</strong>. These common options include:</p>
<p><strong>Default</strong> &#8211; http://www.domain.com/?p=123</p>
<p><strong>Date and name based</strong> &#8211; http://www.domain.com/2008/01/15/sample-post/</p>
<p><strong>Numeric</strong> &#8211; http://www.domain.com/archives/123</p>
<p>There is no sense in using the default option so choose either <strong>Date and name based</strong> or <strong>Numeric</strong> if you don&#8217;t feel like tinkering with the Custom Structure.</p>
<p>The custom structure of the permalinks settings area allows you to customize the way permalinks are displayed by using any combination of the following permalink tags.</p>
<blockquote><p><strong>%year%</strong> &#8211; 4-digit year (for example, 2008)</p>
<p><strong>%monthnum%</strong> &#8211; 2-digit month (for example, 01 for January)</p>
<p><strong>%day%</strong> &#8211; 2-digit day (for example, 15)</p>
<p><strong>%hour%</strong> &#8211; 2-digit hour of the day (for example, 20 for 10PM)</p>
<p><strong>%minute%</strong> &#8211; 2-digit minute (for example, 50)</p>
<p><strong>%second%</strong> &#8211; 2-digit second (for example, 24)</p>
<p><strong>%postname%</strong> &#8211; Text separated by dashes which usually ends up being the post name. (for example, configuring-wp-permalinks)</p>
<p><strong>%post_id%</strong> &#8211; The unique, numerical ID of the post (for example, 124)</p>
<p><strong>%category% </strong>- The text of the category name that the post is filed in (for example, how-to)</p>
<p><strong>%author%</strong> &#8211;  Text of the post author&#8217;s name (for example, ronald-huereca)</p>
<p><strong>Example of custom structure in use:</strong></p>
<p><strong>Custom Structure:</strong> /%year%/%monthnum%/%day%/</p>
<p><strong>Link Output:</strong> http://www.domain.com/2008/01/16/</p></blockquote>
<p>Make sure that you include the back slashes at the beginning of the custom structure, after each tag and at the end. This will ensure that WordPress writes the correct rules in the .htaccess file via mod_rewrite.</p>
<p><a href="http://jeffc.me" title="http://jeffc.me" target="_blank">For my own blog</a>, I seem to have done fairly well in the search engines by using the Custom Structure method and using the %postname% tag. I can&#8217;t say for sure which combination would do better or worst for search engines. The only thing I can suggest is that you configure your permalinks to look whats best for you.</p>
<h2>*WARNING*</h2>
<p>Changing the structure of your permalinks affects all of the permalinks on your blog. This is important to know because search engines will have indexed posts on your site via their permalinks. If you change the permalink structure mid stream, you will end up invalidating all of those links.</p>
<h2>What to do if you don&#8217;t have a .htaccess file?</h2>
<p>If you notice that you don&#8217;t have a .htaccess file within the same directory as your WordPress installation, you can create one by first creating a blank .txt file and saving the file as htaccess.txt. Upload this file via  FTP to the same folder that houses your WordPress installation. Once the file is uploaded, set the permissions to the file as <strong>666</strong>. Next, rename the file to .htaccess. Now you should have a blank .htaccess file for which WordPress can write the proper permalink rules to.</p>
<h2>Servers That Don&#8217;t Use Apache Or mod_rewrite.</h2>
<p>If the webhosting server you are on does not have the apache module mod_rewrite enabled, you can still use the permalink settings in WordPress by placing <strong>index.php</strong> in front of any custom permalink tags.</p>
<p><strong>For example:</strong> /index.php/%year%/%monthnum%/%day%/</p>
<p><strong>Equals:</strong> http://www.domain.com/index.php/2008/01/16/</p>
<p>Using index.php in this way eliminates the need for a .htaccess file.</p>
<p>I hope this little primer on how to configure your permalinks within WordPress was helpful. I&#8217;ve seen too many blogs out on the net that have yet to take advantage of this awesome feature. As I&#8217;ve said before, using any sort of permalink structure is better than the WP default. Not only is it beneficial in terms of SEO, but it also makes it easier for human beings to see at a glance, what a particular link is pointing to without having to visit the page.</p>
<p>If you use the custom structure aspect of permalinks, I&#8217;d be very interested in knowing which configuration of permalink tags you have chosen to use and why.</p>
]]></content:encoded>
			<wfw:commentRss>http://weblogtoolscollection.com/archives/2008/01/16/configuring-wp-permalinks/feed/</wfw:commentRss>
		<slash:comments>64</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  weblogtoolscollection.com/archives/tag/links/feed/ ) in 1.37388 seconds, on Feb 14th, 2012 at 1:51 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 14th, 2012 at 2:51 pm UTC -->
