<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>DevChimp &#187; WordPress</title>
	<atom:link href="http://devchimp.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://devchimp.com</link>
	<description>Tech Articles, Development Articles, Gadget Reviews, and More!</description>
	<lastBuildDate>Wed, 01 Feb 2012 13:33:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='devchimp.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/19f7ae5c9740f5b1991102dad188476f?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>DevChimp &#187; WordPress</title>
		<link>http://devchimp.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://devchimp.com/osd.xml" title="DevChimp" />
	<atom:link rel='hub' href='http://devchimp.com/?pushpress=hub'/>
		<item>
		<title>[WordPress Tip] Customize Your Login Page</title>
		<link>http://devchimp.com/2012/01/05/wordpress-tip-customize-your-login-page/</link>
		<comments>http://devchimp.com/2012/01/05/wordpress-tip-customize-your-login-page/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 19:42:11 +0000</pubDate>
		<dc:creator>Kyle Reddoch</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[custom login]]></category>
		<category><![CDATA[language php]]></category>
		<category><![CDATA[logo change]]></category>
		<category><![CDATA[logo image]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://devchimp.com/?p=443</guid>
		<description><![CDATA[The following is what you would put in the &#8220;active&#8221; themes functions.phppage. Changing the Logo Default it is the WordPress Logo. Change the file path to meet your needs. Changing the URL Default, this links to the WordPress site. Make this change to change it to your sites home page. Changing the Title This is &#8230; <span class="more-link"><a href="http://devchimp.com/2012/01/05/wordpress-tip-customize-your-login-page/">Continue reading &#187;</a></span><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devchimp.com&amp;blog=30625590&amp;post=443&amp;subd=devchimp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The following is what you would put in the &#8220;active&#8221; themes <em>functions.php</em>page.</p>
<h2>Changing the Logo</h2>
<p>Default it is the WordPress Logo. Change the file path to meet your needs.</p>
<p><pre class="brush: php; wrap-lines: true;">
function custom_login_logo() {
        echo '&lt;style type=&quot;text/css&quot;&gt;h1 a { background: url('.get_bloginfo('template_directory').'/images/logo-login.gif) 50% 50% no-repeat !important; }&lt;/style&gt;';
}
add_action('login_head', 'custom_login_logo');
</pre></p>
<h2>Changing the URL</h2>
<p>Default, this links to the WordPress site. Make this change to change it to your sites home page.</p>
<p><pre class="brush: php; wrap-lines: true;">
function change_wp_login_url() {
        echo bloginfo('url');
}
add_filter('login_headerurl', 'change_wp_login_url');
</pre></p>
<h2>Changing the Title</h2>
<p>This is the Title attribute for the logo image. Making this change will change it to your blog&#8217;s name that you setup in the setting section.</p>
<p><pre class="brush: php; wrap-lines: true;">
function change_wp_login_title() {
        echo get_option('blogname');
}
add_filter('login_headertitle', 'change_wp_login_title');
</pre></p>
<p>That&#8217;s all. You are ready to go!</p>
<h6 class="zemanta-related-title" style="font-size:1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.techradar.com/news/internet/14-handy-wordpress-tips-and-tricks-1008917?src=rss&amp;attr=all">In Depth: 14 handy WordPress tips and tricks</a> (techradar.com)</li>
<li class="zemanta-article-ul-li"><a href="http://wp.smashingmagazine.com/2012/01/04/create-custom-taxonomies-wordpress/">How To Create Custom Taxonomies In WordPress</a> (wp.smashingmagazine.com)</li>
<li class="zemanta-article-ul-li"><a href="http://stackoverflow.com/questions/8021309/wordpress-login-in-jquery-popup-how-to-validate-login-with-jquery-ajax">WordPress Login in jQuery Popup &#8211; How to validate login with jQuery Ajax?</a> (stackoverflow.com)</li>
</ul>
<br />Filed under: <a href='http://devchimp.com/category/tutorials/php/'>PHP</a>, <a href='http://devchimp.com/category/tutorials/'>Tutorials</a>, <a href='http://devchimp.com/category/tutorials/wordpress/'>WordPress</a> Tagged: <a href='http://devchimp.com/tag/custom-login/'>custom login</a>, <a href='http://devchimp.com/tag/language-php/'>language php</a>, <a href='http://devchimp.com/tag/logo-change/'>logo change</a>, <a href='http://devchimp.com/tag/logo-image/'>logo image</a>, <a href='http://devchimp.com/tag/php/'>PHP</a>, <a href='http://devchimp.com/tag/tools/'>Tools</a>, <a href='http://devchimp.com/tag/wordpress/'>WordPress</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/devchimp.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/devchimp.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/devchimp.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/devchimp.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/devchimp.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/devchimp.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/devchimp.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/devchimp.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/devchimp.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/devchimp.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/devchimp.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/devchimp.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/devchimp.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/devchimp.wordpress.com/443/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devchimp.com&amp;blog=30625590&amp;post=443&amp;subd=devchimp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devchimp.com/2012/01/05/wordpress-tip-customize-your-login-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://devchimp.files.wordpress.com/2012/01/wp-login.png?w=150" />
		<media:content url="http://devchimp.files.wordpress.com/2012/01/wp-login.png?w=150" medium="image">
			<media:title type="html">wp-login</media:title>
		</media:content>

		<media:content url="http://0.gravatar.com/avatar/2551bfbfd2458166b72251847e886371?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">kylereddoch</media:title>
		</media:content>
	</item>
		<item>
		<title>WordPress: Display Post&#8217;s Author Information</title>
		<link>http://devchimp.com/2011/12/28/wordpress-display-posts-author-information/</link>
		<comments>http://devchimp.com/2011/12/28/wordpress-display-posts-author-information/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 13:38:31 +0000</pubDate>
		<dc:creator>Kyle Reddoch</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Gravatar]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://devchimp.com/?p=266</guid>
		<description><![CDATA[If you want to display the information of the post&#8217;s author, just use this code below. Simple and easy! The image it returns comes from the email address and the corresponding Gravatar. The name and bio information comes from the User settings in the WordPress admin section. Enjoy? Would you care to share it? Related &#8230; <span class="more-link"><a href="http://devchimp.com/2011/12/28/wordpress-display-posts-author-information/">Continue reading &#187;</a></span><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devchimp.com&amp;blog=30625590&amp;post=266&amp;subd=devchimp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you want to display the information of the post&#8217;s author, just use this code below. Simple and easy!</p>
<p>The image it returns comes from the email address and the corresponding <a class="zem_slink" title="Gravatar" href="http://en.gravatar.com/" rel="homepage" target="_blank">Gravatar</a>. The name and bio information comes from the User settings in the WordPress admin section.</p>
<p><pre class="brush: php; html-script: true; wrap-lines: true;">

&lt;div class=&quot;author-box&quot;&gt;
&lt;div class=&quot;author-pic&quot;&gt;&lt;?php echo get_avatar( get_the_author_email(), '80' ); ?&gt;&lt;/div&gt;
&lt;div class=&quot;author-name&quot;&gt;&lt;?php the_author_meta( &quot;display_name&quot; ); ?&gt;&lt;/div&gt;
&lt;div class=&quot;author-bio&quot;&gt;&lt;?php the_author_meta( &quot;user_description&quot; ); ?&gt;&lt;/div&gt;
&lt;/div&gt;

</pre></p>
<p><em>Enjoy? Would you care to share it?</em></p>
<h6 class="zemanta-related-title" style="font-size:1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://pressography.com/tutorials/tutorial-how-to-add-authors%e2%80%99-images-to-your-wordpress-blog/">[Tutorial] How to Add Authors&#8217; Images to your WordPress Blog</a> (pressography.com)</li>
<li class="zemanta-article-ul-li"><a href="http://pressography.com/syndicated/how-to-create-a-unique-wordpress-category-archive-page/">How to Create a Unique WordPress Category Archive Page</a> (pressography.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.johnchow.com/how-to-update-your-blog-copyright-notice-automatically/">How To Update Your Blog Copyright Notice Automatically</a> (johnchow.com)</li>
</ul>
<br />Filed under: <a href='http://devchimp.com/category/how-tos/'>How To's</a>, <a href='http://devchimp.com/category/snippets/'>Snippets</a>, <a href='http://devchimp.com/category/tutorials/'>Tutorials</a>, <a href='http://devchimp.com/category/tutorials/wordpress/'>WordPress</a> Tagged: <a href='http://devchimp.com/tag/gravatar/'>Gravatar</a>, <a href='http://devchimp.com/tag/php/'>PHP</a>, <a href='http://devchimp.com/tag/programming/'>Programming</a>, <a href='http://devchimp.com/tag/wordpress/'>WordPress</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/devchimp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/devchimp.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/devchimp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/devchimp.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/devchimp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/devchimp.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/devchimp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/devchimp.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/devchimp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/devchimp.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/devchimp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/devchimp.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/devchimp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/devchimp.wordpress.com/266/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devchimp.com&amp;blog=30625590&amp;post=266&amp;subd=devchimp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devchimp.com/2011/12/28/wordpress-display-posts-author-information/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2551bfbfd2458166b72251847e886371?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">kylereddoch</media:title>
		</media:content>
	</item>
		<item>
		<title>WordPress How To: Automatically add a Google+ button to your posts</title>
		<link>http://devchimp.com/2011/12/28/wordpress-how-to-automatically-add-a-google-button-to-your-posts/</link>
		<comments>http://devchimp.com/2011/12/28/wordpress-how-to-automatically-add-a-google-button-to-your-posts/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 12:33:51 +0000</pubDate>
		<dc:creator>Kyle Reddoch</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://devchimp.com/?p=239</guid>
		<description><![CDATA[This is a very simple hook to accomplish. Every time you publish a post, a Google+ button is automatically added to your post. This will also add it to all your existing posts. Here&#8217;s how: Open your functions.php page and paste the following code. If you found this How To useful, would you mind sharing it? Related &#8230; <span class="more-link"><a href="http://devchimp.com/2011/12/28/wordpress-how-to-automatically-add-a-google-button-to-your-posts/">Continue reading &#187;</a></span><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devchimp.com&amp;blog=30625590&amp;post=239&amp;subd=devchimp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a very simple hook to accomplish. Every time you publish a post, a Google+ button is automatically added to your post. This will also add it to all your existing posts.</p>
<h3>Here&#8217;s how:</h3>
<p>Open your <em>functions.php</em> page and paste the following code.</p>
<p><span id="more-239"></span></p>
<p><pre class="brush: php;">
add_filter('the_content', 'wpr_google_plusone');
function wpr_google_plusone($content) {
$content = $content.'&lt;div class=&quot;plusone&quot;&gt;&lt;g:plusone size=&quot;tall&quot; href=&quot;'.get_permalink().'&quot;&gt;&lt;/g:plusone&gt;&lt;/div&gt;';
return $content;
}

add_action ('wp_enqueue_scripts','wpr_google_plusone_script');
function wpr_google_plusone_script() {
wp_enqueue_script('google-plusone', 'https://apis.google.com/js/plusone.js', array(), null);
}
</pre></p>
<p><em>If you found this How To useful, would you mind sharing it?</em></p>
<h6 class="zemanta-related-title" style="font-size:1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.makeuseof.com/tag/3-ways-integrate-google-blog/" target="_blank">3 Ways To Integrate Google Plus Into Your Blog</a> (makeuseof.com)</li>
<li class="zemanta-article-ul-li"><a href="http://socialwayne.com/2011/08/31/now-you-can-1-every-website-in-google-chrome-with-the-new-google-1-button-extension/" target="_blank">Now you can +1 every website in Google Chrome with the new Google +1 Button extension</a> (socialwayne.com)</li>
</ul>
<br />Filed under: <a href='http://devchimp.com/category/how-tos/'>How To's</a>, <a href='http://devchimp.com/category/tutorials/php/'>PHP</a>, <a href='http://devchimp.com/category/snippets/'>Snippets</a>, <a href='http://devchimp.com/category/tutorials/'>Tutorials</a>, <a href='http://devchimp.com/category/tutorials/wordpress/'>WordPress</a> Tagged: <a href='http://devchimp.com/tag/google/'>Google</a>, <a href='http://devchimp.com/tag/wordpress/'>WordPress</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/devchimp.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/devchimp.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/devchimp.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/devchimp.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/devchimp.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/devchimp.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/devchimp.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/devchimp.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/devchimp.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/devchimp.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/devchimp.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/devchimp.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/devchimp.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/devchimp.wordpress.com/239/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devchimp.com&amp;blog=30625590&amp;post=239&amp;subd=devchimp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devchimp.com/2011/12/28/wordpress-how-to-automatically-add-a-google-button-to-your-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2551bfbfd2458166b72251847e886371?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">kylereddoch</media:title>
		</media:content>
	</item>
		<item>
		<title>How To: Automatically email contributors when their posts are published</title>
		<link>http://devchimp.com/2011/12/22/how-to-automatically-email-contributors-when-their-posts-are-published/</link>
		<comments>http://devchimp.com/2011/12/22/how-to-automatically-email-contributors-when-their-posts-are-published/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 18:43:58 +0000</pubDate>
		<dc:creator>Kyle Reddoch</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://devchimp.com/?p=150</guid>
		<description><![CDATA[When you have site that has multiple authors, it would be plus to have those authors be emailed once their article is published. Where here is a little trick to allow that. Just put the following code in your functions.php page and save. You should now be all set to go! Cheers! If you enjoyed &#8230; <span class="more-link"><a href="http://devchimp.com/2011/12/22/how-to-automatically-email-contributors-when-their-posts-are-published/">Continue reading &#187;</a></span><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devchimp.com&amp;blog=30625590&amp;post=150&amp;subd=devchimp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you have site that has multiple authors, it would be plus to have those authors be emailed once their article is published.</p>
<p>Where here is a little trick to allow that. Just put the following code in your functions.php page and save.</p>
<p><pre class="brush: php; wrap-lines: true;">
function wpr_authorNotification($post_id) {
   $post = get_post($post_id);
   $author = get_userdata($post-&gt;post_author);

   $message = &quot;
      Hi &quot;.$author-&gt;display_name.&quot;,
      Your post, &quot;.$post-&gt;post_title.&quot; has just been published. Well done!
   &quot;;
   wp_mail($author-&gt;user_email, &quot;Your article is online&quot;, $message);
}
add_action('publish_post', 'wpr_authorNotification');
</pre></p>
<p>You should now be all set to go!</p>
<p>Cheers!</p>
<p><em>If you enjoyed this how to, would you please consider sharing it?</em></p>
<h6 class="zemanta-related-title" style="font-size:1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://wp.smashingmagazine.com/2011/10/07/definitive-guide-wordpress-hooks/">WordPress Essentials: The Definitive Guide To WordPress Hooks</a> (wp.smashingmagazine.com)</li>
<li class="zemanta-article-ul-li"><a href="http://pressography.com/wordpress/wordpress-tutorial-for-beginners-creating-managing-user-profiles/">WordPress Tutorial For Beginners: Creating &amp; Managing User Profiles</a> (pressography.com)</li>
<li class="zemanta-article-ul-li"><a href="http://blog.hubspot.com/blog/tabid/6307/bid/23521/5-Reasons-Your-Blog-Needs-More-Than-One-Contributor.aspx">5 Reasons Your Blog Needs More Than One Contributor</a> (hubspot.com)</li>
</ul>
<br />Filed under: <a href='http://devchimp.com/category/tutorials/php/'>PHP</a>, <a href='http://devchimp.com/category/snippets/'>Snippets</a>, <a href='http://devchimp.com/category/tutorials/'>Tutorials</a>, <a href='http://devchimp.com/category/tutorials/wordpress/'>WordPress</a> Tagged: <a href='http://devchimp.com/tag/php/'>PHP</a>, <a href='http://devchimp.com/tag/programming/'>Programming</a>, <a href='http://devchimp.com/tag/wordpress/'>WordPress</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/devchimp.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/devchimp.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/devchimp.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/devchimp.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/devchimp.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/devchimp.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/devchimp.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/devchimp.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/devchimp.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/devchimp.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/devchimp.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/devchimp.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/devchimp.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/devchimp.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devchimp.com&amp;blog=30625590&amp;post=150&amp;subd=devchimp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devchimp.com/2011/12/22/how-to-automatically-email-contributors-when-their-posts-are-published/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2551bfbfd2458166b72251847e886371?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">kylereddoch</media:title>
		</media:content>
	</item>
	</channel>
</rss>
