<?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>Wordpress Feed &#187; How To</title>
	<atom:link href="http://wpfeed.com/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpfeed.com</link>
	<description>Wordpress How To</description>
	<lastBuildDate>Thu, 29 Dec 2011 09:11:52 +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>Exclude Specific Author From RSS</title>
		<link>http://wpfeed.com/2011/09/exclude-specific-author-from-rss/</link>
		<comments>http://wpfeed.com/2011/09/exclude-specific-author-from-rss/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 07:00:10 +0000</pubDate>
		<dc:creator>Wpfeed</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Wordpress Tips]]></category>

		<guid isPermaLink="false">http://wpfeed.com/?p=982</guid>
		<description><![CDATA[sometimes you wish not to display one or more of your authors in RSS feed of your blog, it can be a test user or any other reason. here is the code to paste in your functions.php function wp_exclude_author($query) { if ($query-&#62;is_feed) { $query-&#62;set('author','-1'); //Author ID } return $query; } add_filter('pre_get_posts','wp_exclude_author'); if you wish to [...]]]></description>
			<content:encoded><![CDATA[<p>sometimes you wish not to display one or more of your authors in RSS feed of your blog, it can be a test user or any other reason.</p>
<p>here is the code to paste in your functions.php</p>
<pre><strong>function wp_exclude_author($query) {</strong>
<strong> if ($query-&gt;is_feed) {</strong>
<strong> $query-&gt;set('author','-1'); //Author ID</strong>
<strong> }</strong>
<strong>return $query;</strong>
<strong>}</strong>
<strong>add_filter('pre_get_posts','wp_exclude_author');</strong></pre>
<pre></pre>
<p>if you wish to exclude more authors just use space and another user ID with minus, like that:</p>
<pre><strong>$query-&gt;set('author','-1 -5'); //Author ID</strong></pre>
<p><strong><br />
</strong></p>
<pre></pre>
<img src="http://wpfeed.com/?ak_action=api_record_view&id=982&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpfeed.com/2011/09/exclude-specific-author-from-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display Random Posts In WordPress</title>
		<link>http://wpfeed.com/2011/09/display-random-posts-in-wordpress/</link>
		<comments>http://wpfeed.com/2011/09/display-random-posts-in-wordpress/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 07:07:52 +0000</pubDate>
		<dc:creator>Wpfeed</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Wordpress Tips]]></category>

		<guid isPermaLink="false">http://wpfeed.com/?p=970</guid>
		<description><![CDATA[Sometimes in your theme you want to display random posts or maybe random related posts in your sidebar, here&#8217;s an easy way to do it. in your single.php or index.php, change the main loop to: &#60;?php query_posts(array('orderby' =&#62; 'rand', 'showposts' =&#62; 1));  if (have_posts()) : while (have_posts()) : the_post(); ?&#62;  &#60;h1&#62;&#60;a href="&#60;?php the_permalink() ?&#62;"&#62; &#60;?php [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes in your theme you want to display random posts or maybe random related posts in your sidebar,</p>
<p>here&#8217;s an easy way to do it.</p>
<p>in your single.php or index.php, change the main loop to:</p>
<p><strong><span class="Apple-style-span" style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px; white-space: pre;">&lt;?php</span></strong></p>
<pre><strong>query_posts(array('orderby' =&gt; 'rand', 'showposts' =&gt; 1)); </strong></pre>
<pre><strong>if (have_posts()) : while (have_posts()) : the_post(); ?&gt; </strong></pre>
<pre><strong>&lt;h1&gt;&lt;a href="&lt;?php the_permalink() ?&gt;"&gt;</strong></pre>
<pre><strong>&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h1&gt; &lt;?php the_content(); ?&gt; </strong></pre>
<pre><strong>&lt;?php endwhile; endif; ?&gt;</strong></pre>
<img src="http://wpfeed.com/?ak_action=api_record_view&id=970&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpfeed.com/2011/09/display-random-posts-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display Facebook Comments Count Anywhere In Your Blog</title>
		<link>http://wpfeed.com/2011/09/display-facebook-comments-count-anywhere-in-your-blog/</link>
		<comments>http://wpfeed.com/2011/09/display-facebook-comments-count-anywhere-in-your-blog/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 11:16:08 +0000</pubDate>
		<dc:creator>Wpfeed</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Wordpress Tips]]></category>

		<guid isPermaLink="false">http://wpfeed.com/?p=962</guid>
		<description><![CDATA[if you are using facebook comments social plugin for your blog comments, you can use this code snippet to display comments counter. paste it where you want to display the counter. if you&#8217;re outside of the wordpress Loop use - get_permalink( $id ); instead of the_permalink();. &#60;fb:comments-count href=&#8221;&#60;?php the_permalink();?&#62;&#8221;&#62;&#60;/fb:comments-count&#62; Comments]]></description>
			<content:encoded><![CDATA[<p>if you are using <a href="http://developers.facebook.com/docs/reference/plugins/comments/">facebook comments social plugin</a> for your blog comments, you can use this code snippet to display comments counter.</p>
<p>paste it where you want to display the counter. if you&#8217;re outside of the wordpress Loop use - <strong>get_permalink( $id ); </strong>instead of<strong> <strong>the_permalink();.</strong></strong></p>
<p><strong>&lt;fb:comments-count href=&#8221;&lt;?php the_permalink();?&gt;&#8221;&gt;&lt;/fb:comments-count&gt; Comments</strong></p>
<img src="http://wpfeed.com/?ak_action=api_record_view&id=962&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpfeed.com/2011/09/display-facebook-comments-count-anywhere-in-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove WordPress Admin Bar</title>
		<link>http://wpfeed.com/2011/09/remove-wordpress-admin-bar/</link>
		<comments>http://wpfeed.com/2011/09/remove-wordpress-admin-bar/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 10:59:26 +0000</pubDate>
		<dc:creator>Wpfeed</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Wordpress Tips]]></category>

		<guid isPermaLink="false">http://wpfeed.com/?p=959</guid>
		<description><![CDATA[From version 3.1 wordpress has an admin bar at the top of the blog displayed all the time if you are logged in. if you with to remove it from the theme and not by css tricks, paste this code into your functions.php: &#160; remove_action('init', 'wp_admin_bar_init');]]></description>
			<content:encoded><![CDATA[<p>From version 3.1 wordpress has an admin bar at the top of the blog displayed all the time if you are logged in. if you with to remove it from the theme and not by css tricks, paste this code into your functions.php:</p>
<p>&nbsp;</p>
<pre><strong>remove_action('init', 'wp_admin_bar_init');</strong></pre>
<img src="http://wpfeed.com/?ak_action=api_record_view&id=959&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpfeed.com/2011/09/remove-wordpress-admin-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change Author Name Or Style Automatically</title>
		<link>http://wpfeed.com/2011/09/change-author-name-or-style-automatically/</link>
		<comments>http://wpfeed.com/2011/09/change-author-name-or-style-automatically/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 10:36:56 +0000</pubDate>
		<dc:creator>Wpfeed</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Wordpress Tips]]></category>

		<guid isPermaLink="false">http://wpfeed.com/?p=954</guid>
		<description><![CDATA[let's say you have a sponsored author you want to display in bold or maybe change the font size or color. you can do it automatically with WordPress. inside the function.php paste this function, just don't forget to change the NAME_OF_AUTHOR to the name of the author you wish to take care of. function custom_author_name( [...]]]></description>
			<content:encoded><![CDATA[<pre>let's say you have a sponsored author you want to display in bold or</pre>
<pre>maybe change the font size or color. you can do it automatically with WordPress.</pre>
<pre>inside the function.php paste this function, just don't forget to change</pre>
<pre>the NAME_OF_AUTHOR to the name of the author you wish to take care of.</pre>
<pre><strong>function custom_author_name( $name ) { global $post; if ($name == 'NAME_OF_AUTHOR'){</strong></pre>
<pre><strong> $name = '&lt;font color=#761B4A&gt;&lt;b&gt;' . $name . '&lt;/b&gt;&lt;/font&gt;'; } return $name; } </strong></pre>
<pre><strong>add_filter( 'the_author', 'custom_author_name' );</strong></pre>
<img src="http://wpfeed.com/?ak_action=api_record_view&id=954&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpfeed.com/2011/09/change-author-name-or-style-automatically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Your Post Featured Image In Facebook Share Automatically</title>
		<link>http://wpfeed.com/2011/09/use-your-post-featured-image-in-facebook-share-automatically/</link>
		<comments>http://wpfeed.com/2011/09/use-your-post-featured-image-in-facebook-share-automatically/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 10:28:27 +0000</pubDate>
		<dc:creator>Wpfeed</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Wordpress Tips]]></category>

		<guid isPermaLink="false">http://wpfeed.com/?p=952</guid>
		<description><![CDATA[when sharing on facebook or even pressing the "like" button, your featured image of the post will show as the default image. if no featured image you can tell the function to use your LOGO. just paste this code in functions.php, don't forget to tell the function where your logo is (SOURCE_TO_YOUR_LOGO). function insert_image_src_rel_in_head() { [...]]]></description>
			<content:encoded><![CDATA[<pre>when sharing on facebook or even pressing the "like" button,</pre>
<pre>your featured image of the post will show as the default image.</pre>
<pre>if no featured image you can tell the function to use your LOGO.</pre>
<pre>just paste this code in functions.php, don't forget to tell</pre>
<pre>the function where your logo is (SOURCE_TO_YOUR_LOGO).</pre>
<pre><strong>function insert_image_src_rel_in_head() {</strong></pre>
<pre><strong> global $post;</strong>

<strong> if ( !is_singular()) //if it is not a post or a page do nothing</strong>
<strong> return;</strong>

<strong> if(!has_post_thumbnail( $post-&gt;ID )) {</strong>
<strong> $default_image="SOURCE_TO_YOUR_LOGO"; </strong>
<strong> echo '&lt;meta property="og:image" content="' . $default_image . '"/&gt;';</strong>
<strong> }</strong>
<strong> else{</strong>
<strong> $thumbnail_src = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), 'medium' );</strong>
<strong> echo '&lt;meta property="og:image" content="' . esc_attr( $thumbnail_src[0] ) . '"/&gt;';</strong>
<strong> }</strong>
<strong> echo "\n";</strong>
<strong>}</strong>
<strong>add_action( 'wp_head', 'insert_image_src_rel_in_head', 5 );</strong></pre>
<img src="http://wpfeed.com/?ak_action=api_record_view&id=952&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpfeed.com/2011/09/use-your-post-featured-image-in-facebook-share-automatically/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Disable Upgrade WordPress Notification</title>
		<link>http://wpfeed.com/2011/09/how-to-disable-upgrade-wordpress-notification/</link>
		<comments>http://wpfeed.com/2011/09/how-to-disable-upgrade-wordpress-notification/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 10:27:47 +0000</pubDate>
		<dc:creator>Wpfeed</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Wordpress Tips]]></category>

		<guid isPermaLink="false">http://wpfeed.com/?p=950</guid>
		<description><![CDATA[very easily you can disable the sometimes annoying  message from wordpress reminding you to upgrade your wordpress. it is recommended to turn it off especially in multi author websites. in your function.php, paste this code: add_filter( &#8216;pre_site_transient_update_core&#8217;, create_function( &#8216;$a&#8217;, &#8220;return null;&#8221; ) );]]></description>
			<content:encoded><![CDATA[<p>very easily you can disable the sometimes annoying  message from wordpress reminding you to upgrade your wordpress. it is recommended to turn it off especially in multi author websites.</p>
<p>in your function.php, paste this code:</p>
<p><strong>add_filter( &#8216;pre_site_transient_update_core&#8217;, create_function( &#8216;$a&#8217;, &#8220;return null;&#8221; ) );</strong></p>
<img src="http://wpfeed.com/?ak_action=api_record_view&id=950&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpfeed.com/2011/09/how-to-disable-upgrade-wordpress-notification/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add Google +1 To Your WordPress Site</title>
		<link>http://wpfeed.com/2011/06/add-google-1-to-your-wordpress-site/</link>
		<comments>http://wpfeed.com/2011/06/add-google-1-to-your-wordpress-site/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 06:48:18 +0000</pubDate>
		<dc:creator>Wpfeed</dc:creator>
				<category><![CDATA[Customization And Themes]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Installation]]></category>

		<guid isPermaLink="false">http://wpfeed.com/?p=887</guid>
		<description><![CDATA[Google is trying to compete with facebook&#8217;s like button. they released a social button called +1 (plus one), when you want to show that you loved the article (somebody said &#8220;like&#8221;), you press on the +1 button and the counter adds one. Now you can add +1 button to your wordpress website, we suggest to wait [...]]]></description>
			<content:encoded><![CDATA[<p><!-- Place this tag in your head or just before your close body tag --><br />
<script type="text/javascript" src="http://apis.google.com/js/plusone.js"></script></p>
<p><!-- Place this tag where you want the +1 button to render --><br />
<g:plusone size="tall" href="http://wpfeed.com/2011/06/add-google-1-to-your-wordpress-site/"></g:plusone></p>
<p>Google is trying to compete with facebook&#8217;s like button. they released a social button called +1 (plus one), when you want to show that you loved the article (somebody said &#8220;like&#8221;), you press on the +1 button and the counter adds one.</p>
<p>Now you can add +1 button to your wordpress website, we suggest to wait a few weeks to see if it&#8217;s not just a &#8220;buzz&#8221; but if you want to add it here are the steps:</p>
<p><strong>1)</strong> go to <a href="http://www.google.com/webmasters/+1/button/index.html" target="_blank">http://www.google.com/webmasters/+1/button/index.html</a>.</p>
<p><strong>2)</strong> customize and choose the setting for your button.</p>
<p><strong>3)</strong> copy the lines in the text area :</p>
<p>&lt;!&#8211; Place this tag in your head or just before your close body tag &#8211;&gt;&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://apis.google.com/js/plusone.js&#8221;&gt;&lt;/script&gt;<br />
&lt;!&#8211; Place this tag where you want the +1 button to render &#8211;&gt;&lt;g:plusone&gt;&lt;/g:plusone&gt;</p>
<p>and add it to your post or insert to a page in your theme.</p>
<p><strong>THAT&#8217;S IT!</strong></p>
<p>&nbsp;</p>
<p><strong><a href="http://wpfeed.com/wp-content/uploads/2011/06/Google.png"><img class="alignnone size-full wp-image-888" title="Google" src="http://wpfeed.com/wp-content/uploads/2011/06/Google.png" alt="" width="539" height="565" /></a><br />
</strong></p>
<img src="http://wpfeed.com/?ak_action=api_record_view&id=887&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpfeed.com/2011/06/add-google-1-to-your-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Places To Get Some WordPress Help</title>
		<link>http://wpfeed.com/2011/04/places-to-get-some-wordpress-help/</link>
		<comments>http://wpfeed.com/2011/04/places-to-get-some-wordpress-help/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 20:18:12 +0000</pubDate>
		<dc:creator>Wpfeed</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[wordpress help]]></category>

		<guid isPermaLink="false">http://wpfeed.com/?p=864</guid>
		<description><![CDATA[From time to time you get stuck with a wordpress problem, either you are a wordpress developer or wordpress user, it doesn&#8217;t matter, you&#8217;ll need help with questions and problems you have. if you are a wordpress expert, these places are good to earn some reputation and some of them can earn you some dollars too. [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time you get stuck with a wordpress problem, either you are a wordpress developer or wordpress user, it doesn&#8217;t matter, you&#8217;ll need help with questions and problems you have.</p>
<p>if you are a wordpress expert, these places are good to earn some reputation and some of them can earn you some dollars too.</p>
<h2><a href="http://wpquestions.com/" target="_blank">WP Questions</a></h2>
<p>a place for askers to get quick help and experts to earn some money. the moto of the site:</p>
<p><strong>When I am facing a tight deadline, I do not want to spend 4 hours looking up information on Google &#8211; I&#8217;d rather just pay someone to tell me the answer.</strong></p>
<p><strong><a href="http://wpquestions.com/affiliates/register/name/OshikErnst" target="_blank">Create Your Account Here</a></strong></p>
<h2><strong><a href="http://wordpress.org/support/" target="_blank">WordPress Forums</a></strong></h2>
<p>the official place to get help from the community. there&#8217;s a variety of resources to help you get the most out of WordPress. Your first stop should be the <a href="http://codex.wordpress.org/">documentation</a>, where you’ll find information on everything from installing WordPress for the first time to creating your own themes and plugins.</p>
<h2><a href="http://wordpress.stackexchange.com/" target="_blank">WordPress Answers</a></h2>
<p>the very popular help site stackexchange.com brought you this wordpress help site.</p>
<p>This is a collaboratively edited question and answer site forWordPress developers and administrators. It&#8217;s 100% free, no registration required.</p>
<h2><a href="http://wordpresshelp.org/" target="_blank">WordPress Help</a></h2>
<p>WordPressHelp.org is an eirenicon llc website dedicated to providing information on the effective use of WordPress and WordPress-related technologies.We support a community of users interested in innovating and implementing.</p>
<h2><a href="http://www.justanswer.com/sip/wordpress?r=ppc|ga|1|Rest+of+World|Wordpress&amp;JPKW=wordpress%20help&amp;JPDC=S&amp;JPST=&amp;JPAD=7134449043&amp;JPAF=txt&amp;JPCD=20110207&amp;JPRC=1&amp;JPOP=newSub&amp;gclid=CIr78-myqagCFQRqfAodU0RaeQ" target="_blank">Just Answer</a></h2>
<p>When you have programming questions, ask a programmer. And for customized answers to your programming questions ASAP, ask a programmer here on JustAnswer.</p>
<img src="http://wpfeed.com/?ak_action=api_record_view&id=864&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpfeed.com/2011/04/places-to-get-some-wordpress-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Email Plugins</title>
		<link>http://wpfeed.com/2010/12/wordpress-email-plugins/</link>
		<comments>http://wpfeed.com/2010/12/wordpress-email-plugins/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 08:39:16 +0000</pubDate>
		<dc:creator>Wpfeed</dc:creator>
				<category><![CDATA[Customization And Themes]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[emails]]></category>
		<category><![CDATA[newsletter]]></category>

		<guid isPermaLink="false">http://wpfeed.com/?p=817</guid>
		<description><![CDATA[Sometimes wordpress email capabilities is just not enough for your needs, this is the exact scenario where you need a good plugin to resolve your problem. here are some excellent Email plugins for wordpress: WP Better Emails Adds a customizable good looking HTML template to all WP default plain/text emails and lets you set a custom sender [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes wordpress email capabilities is just not enough for your needs, this is the exact scenario where you need a good plugin to resolve your problem. here are some excellent Email plugins for wordpress:</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">WP Better Emails</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Adds a customizable good looking HTML template to all WP default plain/text emails and lets you set a custom sender name and email address.</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">http://wordpress.org/extend/plugins/wp-better-emails/</div>
<p><strong>WP Better Emails</strong></p>
<p><strong><img class="alignnone size-medium wp-image-820" title="WP_Better_Emails" src="http://wpfeed.com/wp-content/uploads/2010/12/WP_Better_Emails-300x231.png" alt="WP_Better_Emails" width="300" height="231" /></strong></p>
<p>Adds a customizable good looking HTML template to all WP default plain/text emails and lets you set a custom sender name and email address.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-better-emails/  " target="_blank">URL</a></p>
<h2>News Mailer</h2>
<p>Simple plugin for mailing news or updates to members registered on the blog.</p>
<p><a href="http://wordpress.org/extend/plugins/news-mailer/" target="_blank">URL</a></p>
<h2>Subscribe2</h2>
<p><img class="alignnone size-medium wp-image-819" title="subscribe2" src="http://wpfeed.com/wp-content/uploads/2010/12/subscribe2-300x167.png" alt="subscribe2" width="300" height="167" /></p>
<p>Sends a list of subscribers an email notification when new posts are published to your blog</p>
<p><a href="http://wordpress.org/extend/plugins/subscribe2/" target="_blank">URL</a></p>
<h2>MailPress</h2>
<p>Style your html and plain text mails with dedicated themes and templates.</p>
<p>Double opt-in subscription.</p>
<p>Subscriptions to Comments, Newsletters/Post notifications and even to Mailing lists.</p>
<p>Newsletters/Post notifications on a per post, daily, weekly, monthly basis.</p>
<p>Optional : full control on all mails sent by WordPress.</p>
<p><a href="http://wordpress.org/extend/plugins/mailpress/" target="_blank">URL</a></p>
<h2>HTML Emails</h2>
<p><img class="alignnone size-medium wp-image-818" title="htmlemails" src="http://wpfeed.com/wp-content/uploads/2010/12/htmlemails-300x240.png" alt="htmlemails" width="300" height="240" /></p>
<p>Converts the default plain text email notifications into fully customizable, sweet-lookin&#8217; HTML emails.</p>
<p><a href="http://wordpress.org/extend/plugins/html-emails/" target="_blank">URL</a></p>
<h2>Newsletter</h2>
<p><img class="alignnone size-full wp-image-821" title="newsletter" src="http://wpfeed.com/wp-content/uploads/2010/12/newsletter.jpg" alt="newsletter" width="500" height="402" /></p>
<p>Newsletter is a plug-in to collect subscribers and send out newsletters.</p>
<p><a href="http://wordpress.org/extend/plugins/newsletter/" target="_blank">URL</a></p>
<img src="http://wpfeed.com/?ak_action=api_record_view&id=817&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpfeed.com/2010/12/wordpress-email-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

