﻿<?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/"
	>

<channel>
	<title>All about Wordpress - hacks, themes, plugins and many more.</title>
	<atom:link href="http://wp123.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://wp123.info</link>
	<description>Wordpress themes, plugins, hacks and modifications.</description>
	<pubDate>Tue, 05 Jan 2010 17:17:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Delete WordPress Post Revisions</title>
		<link>http://wp123.info/tutorials/delete-wordpress-post-revisions/</link>
		<comments>http://wp123.info/tutorials/delete-wordpress-post-revisions/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 17:17:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://wp123.info/?p=156</guid>
		<description><![CDATA[With WordPress 2.6 and beyond came a feature called Post Revisions. Some people feel that this feature clutters up the database with redundant content. I am one of those who can do without the Post Revisions feature. I have actually seen Post Revisions displayed as redundant posts in conjunction with some popular post rank displaying [...]]]></description>
			<content:encoded><![CDATA[<p>With WordPress 2.6 and beyond came a feature called Post Revisions. Some people feel that this feature clutters up the database with redundant content. I am one of those who can do without the Post Revisions feature. I have actually seen Post Revisions displayed as redundant posts in conjunction with some popular post rank displaying plugins. So, here is how to remove WordPress Post Revisions from your SQL database.<span id="more-156"></span></p>
<p>How to Delete Exisitng WordPress Post Revisions:<br />
1. Login to your <strong>phpMyAdmin</strong> section from <strong>cPanel</strong> or equivalent<br />
2. Locate and select your WordPress database from the <strong>phpMyAdmin</strong> sidebar<br />
3. Click the <strong>SQL</strong> tab from the menu, insert the following line of code and click go to apply the changes:</p>
<blockquote><p>DELETE FROM wp_posts WHERE post_type = &#8220;revision&#8221;;</p></blockquote>
<p>That&#8217;s all there is to it, Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://wp123.info/tutorials/delete-wordpress-post-revisions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Separate Comments from Trackbacks</title>
		<link>http://wp123.info/modifications/separate-comments-from-trackbacks/</link>
		<comments>http://wp123.info/modifications/separate-comments-from-trackbacks/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 13:11:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Modifications]]></category>

		<guid isPermaLink="false">http://wp123.info/?p=152</guid>
		<description><![CDATA[It&#8217;s always good idea to take a few extra second to separate you comments from trackbacks. It&#8217;s always difficult and uncomfortable to follow discussions, when there are a lot of trackbacks mixed with user comments.
Separating your trackbacks and comments requires a minimal amount of coding work to set up. First, you’ll want to make a [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s always good idea to take a few extra second to separate you comments from trackbacks. It&#8217;s always difficult and uncomfortable to follow discussions, when there are a lot of trackbacks mixed with user comments.</p>
<p>Separating your trackbacks and comments requires a minimal amount of coding work to set up. First, you’ll want to make a backup of your comments.php file just in case something goes wrong. Next, follow these three steps:</p>
<p><span id="more-152"></span></p>
<p>1 ) Open your theme&#8217;s comments.php file and locate the following code:</p>
<blockquote><p>&lt;?php foreach ($comments as $comment) : ?&gt;</p></blockquote>
<p>Place this code immediately after the above code:</p>
<blockquote><p>&lt;?php $comment_type = get_comment_type(); ?&gt;<br />
&lt;?php if($comment_type == &#8216;comment&#8217;) { ?&gt;</p></blockquote>
<p>2 ) Next, you’ll want to scroll down a little bit and locate the following code:</p>
<blockquote><p>&lt;?php endforeach; /* end for each comment */ ?&gt;</p></blockquote>
<p>Immediately before the above code, you’ll want to place this code:</p>
<blockquote><p>&lt;?php } /* End of is_comment statement */ ?&gt;</p></blockquote>
<p>This will filter out all of the trackbacks and pingbacks from your main comments loop. Now we need to create a second comments loop to display the trackbacks and pingbacks.</p>
<p>3 ) Almost immediately below the code from step 2 you should find this code:</p>
<blockquote><p>&lt;?php else : // this is displayed if there are no comments so far ?&gt;</p></blockquote>
<p>Immediately before the above code, you’ll want to place this code:</p>
<blockquote><p>&lt;h3&gt;Trackbacks&lt;/h3&gt;<br />
&lt;ol&gt;<br />
&lt;?php foreach ($comments as $comment) : ?&gt;<br />
&lt;?php $comment_type = get_comment_type(); ?&gt;<br />
&lt;?php if($comment_type != &#8216;comment&#8217;) { ?&gt;<br />
&lt;li&gt;&lt;?php comment_author_link() ?&gt;&lt;/li&gt;<br />
&lt;?php } ?&gt;<br />
&lt;?php endforeach; ?&gt;<br />
&lt;/ol&gt;</p></blockquote>
<p>You can adjust this code to display how you want to, including using a different header if you have a specific look for your header 3.</p>
]]></content:encoded>
			<wfw:commentRss>http://wp123.info/modifications/separate-comments-from-trackbacks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Easy Relative Date</title>
		<link>http://wp123.info/plugins/easy-relative-date/</link>
		<comments>http://wp123.info/plugins/easy-relative-date/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 12:40:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://wp123.info/?p=142</guid>
		<description><![CDATA[Easy Relative Date is a simple plugin to add relative date supports on wordpress powered websites, like &#8216;Today&#8217;, &#8216;Yesterday&#8217;, &#8216;2 Days Ago&#8217;, &#8216;2 Weeks Ago&#8217;, &#8216;2 &#8216;Seconds Ago&#8217;, &#8216;2 Minutes Ago&#8217;, &#8216;2 Hours Ago&#8217;. The main advantage of the plugin is that it doesn&#8217;t override standard wordpress the_date() and the_time() functions, so you can use [...]]]></description>
			<content:encoded><![CDATA[<p>Easy Relative Date is a simple plugin to add relative date supports on wordpress powered websites, like &#8216;Today&#8217;, &#8216;Yesterday&#8217;, &#8216;2 Days Ago&#8217;, &#8216;2 Weeks Ago&#8217;, &#8216;2 &#8216;Seconds Ago&#8217;, &#8216;2 Minutes Ago&#8217;, &#8216;2 Hours Ago&#8217;. The main advantage of the plugin is that it doesn&#8217;t override standard wordpress the_date() and the_time() functions, so you can use these functions if you need as well.<span id="more-142"></span></p>
<h2>Usage</h2>
<p>Easy Relative Date can be used for entries as well as for comments. For entries use this code in your template:</p>
<pre class="brush: php">if(!function_exists(&#039;easy_relative_date&#039;)){the_time(&#039;F jS, Y&#039;); } else { echo easy_relative_date(get_the_time(&#039;U&#039;)); }</pre>
<p>For comments use:</p>
<pre class="brush: php">if(!function_exists(&#039;easy_relative_date&#039;)){comment_date() . &#039; at &#039; . comment_time(); } else { echo easy_relative_date(get_comment_time(&#039;U&#039;)); }</pre>
<p>Pretty easy, and a great way to change up your theme, and possibly make it more relevant since people understand and usually think in relative terms.</p>
<h2>Download</h2>
<p><a class="downloadlink" href="http://wp123.info/wp-content/plugins/download-monitor/download.php?id=5" title="Version1.0 downloaded 150 times" >Easy Relative Date (150)</a></br></p>
]]></content:encoded>
			<wfw:commentRss>http://wp123.info/plugins/easy-relative-date/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Create simple shortcodes</title>
		<link>http://wp123.info/modifications/create-simple-shortcodes/</link>
		<comments>http://wp123.info/modifications/create-simple-shortcodes/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 19:51:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Modifications]]></category>

		<category><![CDATA[pages]]></category>

		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[shortcodes]]></category>

		<guid isPermaLink="false">http://wp123.info/?p=123</guid>
		<description><![CDATA[Shortcodes have been introduced in WordPress 2.5. They’re hooks which allow you to call a php function simply by typing something like[shortcode]. It is a great way to save time on repetitive tasks. Just read on to find out how to use them.
To create a shortcode, you first have to create a php function. Let&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Shortcodes have been introduced in WordPress 2.5. They’re hooks which allow you to call a php function simply by typing something like<em>[shortcode]</em>. It is a great way to save time on repetitive tasks. Just read on to find out how to use them.</p>
<p><span id="more-123"></span>To create a shortcode, you first have to create a php function. Let&#8217;s start with a basic one. Append it to your <em>functions.php</em> file.</p>
<blockquote>
<pre>function wp123() {
    return 'Have you checked out &lt;a href="http://www.wp123.info"&gt;wp123&lt;/a&gt; today?';
}</pre>
</blockquote>
<pre>Once you created your function, you have to use the add_shortcode() function.
paste this code just after your function on the <em>functions.php</em> file from your theme:</pre>
<pre>
<pre class="brush: php">add_shortcode(&#039;wp123&#039;, &#039;wp123&#039;);</pre>
</pre>
<pre>You're now able to use the <em>wpr</em> shortcode. To do so, paste the following line of code on the editor (in HTML mode) while writing a post:</pre>
<pre>
<blockquote>
<pre>[wp123]</pre>
</blockquote>
<pre>This short code will output the "Have you checked out wp123 today?" message.</pre>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://wp123.info/modifications/create-simple-shortcodes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Display DropDown categories and archives</title>
		<link>http://wp123.info/modifications/display-dropdown-categories-and-archives/</link>
		<comments>http://wp123.info/modifications/display-dropdown-categories-and-archives/#comments</comments>
		<pubDate>Fri, 01 May 2009 17:06:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Modifications]]></category>

		<category><![CDATA[archives]]></category>

		<category><![CDATA[categories]]></category>

		<category><![CDATA[dropdown]]></category>

		<guid isPermaLink="false">http://wp123.info/?p=112</guid>
		<description><![CDATA[To add a good looking drop down that will list all your existing categories, insert the following code in your blog template. You can do it either in your sidebar.php file or anywhere in the index.php. This is the code :

For categories:
&#60;form action=&#8221;&#60;?php bloginfo(&#8217;url&#8217;); ?&#62;/&#8221; method=&#8221;get&#8221;&#62;
&#60;?php
$select = wp_dropdown_categories(&#8217;show_option_none=Select category&#38;show_count=1&#38;orderby=name&#38;echo=0&#8242;);
$select = preg_replace(&#8221;#&#60;select([^&#62;]*)&#62;#&#8221;, &#8220;&#60;select$1 onchange=&#8217;return this.form.submit()&#8217;&#62;&#8221;, $select);
echo [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-115" style="padding-right:5px;" title="cats" src="http://wp123.info/wp-content/uploads/2009/05/cats.jpg" alt="cats" width="118" height="106" />To add a good looking drop down that will list all your existing categories, insert the following code in your blog template. You can do it either in your sidebar.php file or anywhere in the index.php. This is the code :</p>
<p><span id="more-112"></span></p>
<p>For categories:</p>
<blockquote><p>&lt;form action=&#8221;&lt;?php bloginfo(&#8217;url&#8217;); ?&gt;/&#8221; method=&#8221;get&#8221;&gt;<br />
&lt;?php<br />
$select = wp_dropdown_categories(&#8217;show_option_none=Select category&amp;show_count=1&amp;orderby=name&amp;echo=0&#8242;);<br />
$select = preg_replace(&#8221;#&lt;select([^&gt;]*)&gt;#&#8221;, &#8220;&lt;select$1 onchange=&#8217;return this.form.submit()&#8217;&gt;&#8221;, $select);<br />
echo $select;<br />
?&gt;<br />
&lt;noscript&gt;&lt;input type=&#8221;submit&#8221; value=&#8221;View&#8221; /&gt;&lt;/noscript&gt;<br />
&lt;/form&gt;</p></blockquote>
<p>For archives:</p>
<blockquote><p>&lt;select name=\&#8221;archive-dropdown\&#8221; onChange=&#8217;document.location.href=this.options[this.selectedIndex].value;&#8217;&gt;<br />
&lt;option value=\&#8221;\&#8221;&gt;&lt;?php echo attribute_escape(__(&#8217;Select Month&#8217;)); ?&gt;&lt;/option&gt;<br />
&lt;?php wp_get_archives(&#8217;type=monthly&amp;format=option&amp;show_post_count=1&#8242;); ?&gt; &lt;/select&gt;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wp123.info/modifications/display-dropdown-categories-and-archives/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top 5 SEO plugins for Wordpress</title>
		<link>http://wp123.info/plugins/top-5-plugins/top-5-seo-plugins-for-wordpress/</link>
		<comments>http://wp123.info/plugins/top-5-plugins/top-5-seo-plugins-for-wordpress/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 16:37:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Top 5 plugins]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[images]]></category>

		<category><![CDATA[links]]></category>

		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[seo]]></category>

		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://wp123.info/?p=109</guid>
		<description><![CDATA[WordPress, straight out of the box, comes ready to embrace search engines. Its features and functions guide a search engine through the posts, pages, and categories to help the search engine crawl your site and gather the information it needs to include your site within its database. There is a lot to learn about search engine [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress, straight out of the box, comes ready to embrace search engines. Its features and functions guide a search engine through the posts, pages, and categories to help the search engine crawl your site and gather the information it needs to include your site within its database. There is a lot to learn about search engine optimization and site submission. Here are just a few plugins, which help you to improve your SEO.</p>
<p><span id="more-109"></span></p>
<p><strong>5. SEO Smart Links</strong></p>
<p> </p>
<p>SEO Smart Links provides automatic SEO benefits for your site in addition to custom keyword lists, nofollow and much more.</p>
<p>SEO Smart Links can automatically link keywords and phrases in your posts and comments with corresponding posts, pages, categories and tags on your blog.</p>
<p>Further SEO Smart links allows you to set up your own keywords and set of matching URLs. Finally SEO Smart links allows you to set nofollow attribute and open links in new window.</p>
<p>Everything happens completely transparent, and you can edit the options from the administration settings panel.</p>
<p>Rating: 4/5<br />
Download: <a href="http://wordpress.org/extend/plugins/seo-automatic-links/">http://wordpress.org/extend/plugins/seo-automatic-links/</a> </p>
<p> </p>
<p><strong>4. Seo Watcher</strong></p>
<p> </p>
<p>Briefly said, Seo Watcher checks your daily Google rankings directly inside of Wordpress.</p>
<p>More precisely, you may enter three website URLs and three keywords. Subsequently, Seo Watcher will check which of these sites are listed in Google&#8217;s TOP 100. The plugin is installed inside of only a few seconds and delivers a wealth of useful information. Quite simply.</p>
<p>The plugin works as follows: Seo Watcher connects to the Google server, as if it was a regular user and requests the 30 sites (at maximum). Then the data will be saved and incorporated. This explains the limitation on the amount of sites and keywords. If Seo Watcher would request considerably more sites, there might be negative consequences. (That is Google blocking the requesting IP.)</p>
<p>Rating: 5/5<br />
Download: <a href="http://wordpress.org/extend/plugins/seo-watcher/">http://wordpress.org/extend/plugins/seo-watcher/</a> </p>
<p> </p>
<p><strong>3. SEO Friendly Images</strong></p>
<p> </p>
<p>SEO Friendly Images is a Wordpress optimization plugin which automatically updates all images with proper ALT and TITLE attributes. If your images do not have ALT and TITLE already set, SEO Friendly Images will add them according the options you set. Additionally this makes the post W3C/xHTML valid as well.</p>
<p>ALT attribute is important part of search engine optimization. It describes your image to search engine and when a user searches for a certain image this is a key determining factor for a match.</p>
<p>Rating: 4/5<br />
Download: <a href="http://wordpress.org/extend/plugins/seo-image/">http://wordpress.org/extend/plugins/seo-image/</a> </p>
<p> </p>
<p><strong>2. All in One SEO Pack</strong></p>
<p><strong>Optimizes</strong> your Wordpress blog for Search Engines (<strong>Search Engine Optimization</strong>).</p>
<p>Rating: 4/5<br />
Download: <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">http://wordpress.org/extend/plugins/all-in-one-seo-pack/</a> </p>
<p><strong>1. HeadSpace2 SEO</strong></p>
<p><strong><span style="font-weight: normal;">HeadSpace2 is an all-in-one meta-data manager that allows you to fine-tune the SEO potential of your site.</span></strong></p>
<p><strong><span style="font-weight: normal;">Rating: 4/5<br />
Download: <a href="http://wordpress.org/extend/plugins/headspace2/">http://wordpress.org/extend/plugins/headspace2/</a> </span></strong></p>
<p><strong><span style="font-weight: normal;"><a href="http://codex.wordpress.org/Search_Engine_Optimization_for_Wordpress" target="_blank">More about SEO.</a></span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://wp123.info/plugins/top-5-plugins/top-5-seo-plugins-for-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WP Calculator</title>
		<link>http://wp123.info/plugins/wp-calculator/</link>
		<comments>http://wp123.info/plugins/wp-calculator/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 19:36:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[widget]]></category>

		<category><![CDATA[wp-calculator]]></category>

		<guid isPermaLink="false">http://wp123.info/?p=106</guid>
		<description><![CDATA[WP Calculator is a free simple calculator for your blog. Originaly developed from http://www.bmgadg.com/calculator.php script.  Installation:
1. Download plugin from here
2. Upload to your plugins directory and activate it
3. Go to Appearence &#62; Widgets and add WP Calculator widget.
FAQ:
 1. Can I use this plugin without widget? 
Yes, you can. Place this code anywhere you would like to add [...]]]></description>
			<content:encoded><![CDATA[<p>WP Calculator is a free simple calculator for your blog. Originaly developed from <a href="http://www.bmgadg.com/calculator.php">http://www.bmgadg.com/calculator.php</a> script.  <span id="more-106"></span><strong>Installation:</strong></p>
<p>1. Download plugin from here<br />
2. Upload to your plugins directory and activate it<br />
3. Go to Appearence &gt; Widgets and add <strong>WP Calculator</strong> widget.</p>
<p><strong>FAQ:</strong></p>
<p><em> 1. Can I use this plugin without widget? </em><br />
Yes, you can. Place this code anywhere you would like to add your calculator:</p>
<blockquote><p>&lt;?php wp123_calculator() ?&gt;</p></blockquote>
<p><em> 2. Does this plugin support themes? </em><br />
Not yet. Will be available in future versions.</p>
<p><strong>Download:   <br />
<span style="font-weight: normal;"><a href="http://wp123.info/wp-content/plugins/download-monitor/download.php?id=4" title="Downloaded 152 times">Download WP Calculator</a> - Downloaded 152 times. <strong>Version: 0.1</strong></span> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://wp123.info/plugins/wp-calculator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Past username in comment field &amp; quote text</title>
		<link>http://wp123.info/modifications/past-username-in-comment-field-quote-text/</link>
		<comments>http://wp123.info/modifications/past-username-in-comment-field-quote-text/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 14:44:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Modifications]]></category>

		<category><![CDATA[comments]]></category>

		<category><![CDATA[quote]]></category>

		<category><![CDATA[text]]></category>

		<category><![CDATA[username]]></category>

		<guid isPermaLink="false">http://wp123.info/?p=97</guid>
		<description><![CDATA[You have probably seen this function on different message boards. It allows to simple paste the comment author username in comment textarea and qoute some text from his/her comment with one click. I think it&#8217;s quite necessary feature. It will make commenting process more comfortable and encourages your users to comment on your posts.
Let&#8217;s start:
1) [...]]]></description>
			<content:encoded><![CDATA[<p>You have probably seen this function on different message boards. It allows to simple paste the comment author username in comment textarea and qoute some text from his/her comment with one click. I think it&#8217;s quite necessary feature. It will make commenting process more comfortable and encourages your users to comment on your posts.</p>
<p><span id="more-97"></span>Let&#8217;s start:</p>
<p><strong>1) Create and upload</strong></p>
<p>Create new javascript file and name it anything you wish. For example <strong>wp123.js </strong>and paste this code:</p>
<pre class="brush: javascript">function paste(name)
{document.commentform.comment.value+=&quot;&amp;lt;strong&amp;gt;&quot;+name+&quot;&amp;lt;/strong&amp;gt;\n&quot;;}
function Insert(text){
if (text!=&quot;&quot;) paste4(&quot;&amp;lt;blockquote&amp;gt;&quot;+text+&quot;&amp;lt;/blockquote&amp;gt;\n&quot;, 0);
}
function paste4(text, flag){
if (document.commentform) {
if ((document.selection)&amp;amp;amp;amp;amp;&amp;amp;amp;amp;amp;(flag)) {
document.commentform.comment.focus();
document.commentform.document.selection.createRange().text = text;
} else document.commentform.comment.value += text;
}
}
function get_selection() {
if(navigator.userAgent.search(/webkit/i) &amp;gt; -1) {
selection = window.getSelection();
} else {
if (document.getSelection){
selection = document.getSelection();
selection = selection.replace(/\r\n\r\n/gi, &quot;_doublecaret_&quot;);
selection = selection.replace(/\r\n/gi, &quot; &quot;);
while (selection.indexOf(&quot;  &quot;) !=-1) selection = selection.replace(/  /gi, &quot;&quot;);
selection = selection.replace(/_doublecaret_/gi, &quot;\r\n\r\n&quot;);
} else {
selection = document.selection.createRange().text;
}
}
}</pre>
<p>The <strong>paste </strong>function is for pasting the comment author nickname in comment field. The rest of the code is for quotation. Upload this file to your theme&#8217;s folder.</p>
<p><strong>2) Call this javascript file</strong></p>
<p>Now we have to add this javascript file to your website. For this, paste this code into the header section of your theme:</p>
<pre class="brush: html">&lt;script type=&quot;text/javascript&quot; src=&quot;http://YOURSITE-AND-PATH-OF-SCRIPT/wp123.js&quot;&gt;&lt;/script&gt;</pre>
<p>Change http://YOURSITE-AND-PATH-OF-SCRIPT with the path of your script. If the file is in your theme&#8217;s folder you can use this code:</p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;&lt;?php bloginfo(&#8217;template_directory&#8217;); ?&gt;/js/tab.js&#8221;&gt;&lt;/script&gt;</p></blockquote>
<p><strong>3) Edit your theme</strong></p>
<p>This is the last step of our tutorial. Open your theme&#8217;s <strong>comments.php </strong>and find the <strong>&lt;form&gt; </strong>tag. Add name attribute called <strong>commentform:</strong></p>
<p><strong>&lt;form <span style="color: #ff0000;">name=”commentform”</span> ….. &gt; …. &lt;/form&gt;</strong></p>
<p>Now use this code:</p>
<blockquote><p><code class="plain">&lt;</code><code class="keyword">a</code> <code class="color1">style</code><code class="plain">=</code><code class="string">"cursor:hand"</code> <code class="plain">onclick="paste('&lt;?php comment_author() ?&gt;')"&gt;Paste Username&lt;/</code><code class="keyword">a</code><code class="plain">&gt;</code></p></blockquote>
<p>where you want the &#8220;Past Usename&#8221; text to be shown. This code must be added inside the comment loop. The same for quote text code:</p>
<blockquote><p>&lt;a href=&#8221;javascript:Insert(selection)&#8221; onmousedown=&#8221;get_selection()&#8221;&gt;Click here&lt;/a&gt; to past the text!</p></blockquote>
<p>We are done. Have fun!</p>
<p>Download the javascript file: <a class="downloadlink" href="http://wp123.info/wp-content/plugins/download-monitor/download.php?id=2" title=" downloaded 112 times" >javascript file (112)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wp123.info/modifications/past-username-in-comment-field-quote-text/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top 5 RSS plugin for Wordpress</title>
		<link>http://wp123.info/plugins/top-5-plugins/top-5-rss-plugin-for-wordpress/</link>
		<comments>http://wp123.info/plugins/top-5-plugins/top-5-rss-plugin-for-wordpress/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 20:25:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Top 5 plugins]]></category>

		<category><![CDATA[feedburner]]></category>

		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[posts]]></category>

		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://wp123.info/?p=93</guid>
		<description><![CDATA[A feed is a function of special software that allows feedreaders to access a site, automatically looking for new content and then posting the information about new content and updates to another site. This provides a way for users to keep up with the latest and hottest information posted on different blogging sites.
There are several different kinds of feeds, [...]]]></description>
			<content:encoded><![CDATA[<p>A <a title="Glossary" href="http://codex.wordpress.org/Glossary#Feed">feed</a> is a function of special software that allows <strong>feedreaders</strong> to access a site, automatically looking for new content and then posting the information about new content and updates to another site. This provides a way for users to keep up with the latest and hottest information posted on different blogging sites.</p>
<p>There are several different kinds of feeds, read by different feedreaders. Some feeds include RSS (alternately defined as &#8220;Rich Site Summary&#8221; or &#8220;Really Simple Syndication&#8221;), Atom or RDF files. Now I&#8217;ll review top 5 rss plugin for wordpress.</p>
<p><span id="more-93"></span><strong>5. FeedBurner Widget</strong></p>
<p><strong><span style="font-weight: normal;">FeedBurner Widget is very simple sidebar widget plugin to easy customize and display your FeedBurner subscribers stats button.</span></strong></p>
<p><strong><span style="font-weight: normal;">To use it, you have to register by </span><a title="Register by FeedBurner" href="http://feedburner.com/"><span style="font-weight: normal;">FeedBurner</span></a><span style="font-weight: normal;"> first, to add your feed and to</span><strong><span style="font-weight: normal;">activate the Feed Count service</span></strong><span style="font-weight: normal;"> for it. All of the FeedBurner chicklet customization options are available to edit from the menu: WP-Admin: Appearance: Widgets.</span></p>
<p><span style="font-weight: normal;">Rating on Wordpress org: 4/5</span></p>
<p>4. Disable RSS <span style="font-weight: normal;">(<a href="http://wordpress.org/extend/plugins/disable-rss/" target="_blank">Download</a>)</span></p>
<p><span style="font-weight: normal;">Allows a blog administrator to disable all RSS feeds. (Useful for CMS installations or other situations where RSS is not helpful)</span></p>
<p><span style="font-weight: normal;">Rating on Wordpress org: 4/5</span></p>
<p>3. Ozh&#8217; Better Feed<span style="font-weight: normal;"> (<a href="http://wordpress.org/extend/plugins/ozh-better-feed/" target="_blank">Download</a>)</span></p>
<p><span style="font-weight: normal;">Your feed, on steroids : add a custom footer to RSS items with, for example, a copyright notice, a &#8220;Read More (400 words)&#8221; links, an &#8220;Add to del.icio.us&#8221; link, a list of related entries, or anything really (even custom PHP functions). Compatible with Feedburner or similar services.</span></p>
<p><span style="font-weight: normal;">Improve connectivity between your feed and your site !!</span></p>
<p><span style="font-weight: normal;">Rating on Wordpress org: 4/5</span></p>
<p><strong>2. File Icons</strong> <span style="font-weight: normal;">(</span><a href="http://wordpress.org/extend/plugins/file-icons/" target="_blank"><span style="font-weight: normal;">Download</span></a><span style="font-weight: normal;">)</span></p>
<p><span style="font-weight: normal;">Configure and displays icons before links on your WordPress website by css (on firefox, opera, etc.)</span></p>
<p><span style="font-weight: normal;">Rating on Wordpress org: 4/5</span></p>
<p> </p>
<p>1. FeedWordPress<span style="font-weight: normal;"> (<a href="http://wordpress.org/extend/plugins/feedwordpress/" target="_blank">Download</a>)</span></p>
<p><span style="font-weight: normal;">FeedWordPress is an Atom/RSS aggregator for WordPress. It syndicates content from feeds that you choose into your WordPress weblog; if you syndicate several feeds then you can use WordPress&#8217;s posts database and templating engine as the back-end of an aggregation (&#8221;planet&#8221;) website. It was developed, originally, because I needed a more flexible replacement for <a href="http://www.planetplanet.org/">Planet</a>to use at <a href="http://feministblogs.org/">Feminist Blogs</a>.</span></p>
<p><span style="font-weight: normal;">Rating on Wordpress org: 4/5<br />
</span></p>
<p></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://wp123.info/plugins/top-5-plugins/top-5-rss-plugin-for-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WP Chocolate</title>
		<link>http://wp123.info/themes/wp-chocolate/</link>
		<comments>http://wp123.info/themes/wp-chocolate/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 10:36:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://wp123.info/?p=79</guid>
		<description><![CDATA[Let me introduce my first wordpress theme - WP Chocolate

Name: WP chocolate
Sidebar: Right
columns: 2
Description: Coming soon 
 
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">Let me introduce my first wordpress theme - <strong><span style="color: #993300;">WP Chocolate</span></strong></p>
<p style="text-align: center;"><span style="color: #993300;"><a href="http://wp123.info/wp-content/uploads/2009/04/screenshot.png"><img class="alignnone size-full wp-image-80" title="screenshot" src="http://wp123.info/wp-content/uploads/2009/04/screenshot.png" alt="screenshot" width="300" height="209" /></a></span></p>
<p style="text-align: left;"><span style="color: #993300;"><span id="more-79"></span><span style="font-weight: normal;"><span style="color: #000000;">Name: WP chocolate<br />
Sidebar: Right<br />
columns: 2<br />
Description: <em>Coming soon </em></span></span></span></p>
<p style="text-align: center;"><span style="color: #993300;"><span style="font-weight: normal;"><span style="color: #000000;"> </span></span></span><a href="http://wp123.info/wp-content/plugins/download-monitor/download.php?id=1" title="Downloaded 86 times">Download WP Chocolate</a> - Downloaded 86 times. <strong>Version: 0.1</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://wp123.info/themes/wp-chocolate/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
