<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>WordPress for Beginners</title>
	
	<link>http://www.wpbeginner.com</link>
	<description>Beginner's Guide for WordPress</description>
	<lastBuildDate>Mon, 26 Jul 2010 14:40:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/wpbeginner" /><feedburner:info uri="wpbeginner" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://www.wpbeginner.com/?pushpress=hub" /><feedburner:emailServiceId>wpbeginner</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Video: Adding a Second Menu to the WordPress Twenty Ten Theme</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/A75S5jBXyEc/</link>
		<comments>http://www.wpbeginner.com/wp-tutorials/adding-a-second-menu-to-the-twenty-ten-theme/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 14:40:13 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[twenty ten menu feature]]></category>
		<category><![CDATA[video tutorial for wordpress menus]]></category>
		<category><![CDATA[wordpress 3.0 menu]]></category>
		<category><![CDATA[wordpress menu]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=2022</guid>
		<description><![CDATA[The Twenty Ten theme only comes with one default menu, which is included in the header. However the theme also supports multiple menus, thanks to the use of  <a href="http://codex.wordpress.org/Function_Reference/register_nav_menus" target="_blank" rel="nofollow">register_nav_menus()</a>. Here's a quick tip on how to take advantage of this function and add a second menu to the Twenty Ten theme.<p><a href="http://www.wpbeginner.com/wp-tutorials/adding-a-second-menu-to-the-twenty-ten-theme/">Video: Adding a Second Menu to the WordPress Twenty Ten Theme</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-themes/adding-additional-default-headers-to-the-wordpress-twenty-ten-theme/' rel='bookmark' title='Permanent Link: Adding Additional Default Headers to the WordPress Twenty Ten Theme'>Adding Additional Default Headers to the WordPress Twenty Ten Theme</a></li>
<li><a href='http://www.wpbeginner.com/news/wordpress-3-0-thelonious-features-video/' rel='bookmark' title='Permanent Link: WordPress 3.0 &#8211; Thelonious Features (Video)'>WordPress 3.0 &#8211; Thelonious Features (Video)</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/save-time-by-adding-a-quick-edit-button-in-wordpress-posts/' rel='bookmark' title='Permanent Link: Save time by adding a Quick Edit Button in WordPress Posts'>Save time by adding a Quick Edit Button in WordPress Posts</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The Twenty Ten theme only comes with one default menu, which is included in the header. However the theme also supports multiple menus, thanks to the use of  <a href="http://codex.wordpress.org/Function_Reference/register_nav_menus" target="_blank" rel="nofollow">register_nav_menus()</a>. Here&#8217;s a quick tip on how to take advantage of this function and add a second menu to the Twenty Ten theme.</p>
<h2>Watch the Screencast</h2>
<p><embed src="http://blip.tv/play/hdgAgfCjGAI" type="application/x-shockwave-flash" width="480" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<h2>Functions.php</h2>
<p>Open the functions.php file and look for:</p>
<blockquote><p>// This theme uses wp_nav_menu() in one location.</p></blockquote>
<p>The next line is where we see the <a href="http://codex.wordpress.org/Function_Reference/register_nav_menus" target="_blank" rel="nofollow">register_nav_menus()</a> being used. As you can see this function accepts an array.</p>
<blockquote><p>register_nav_menus( array(<br />
&#8216;primary&#8217; =&gt; __( &#8216;Primary Navigation&#8217;, &#8216;twentyten&#8217; ),<br />
) );</p></blockquote>
<p><strong>primary:</strong> this is a key, or name of the menu, this name should be unique within the array</p>
<p><strong>__( &#8216;Primary Navigation&#8217;): </strong>this is the vaule of the key, or description of the menu</p>
<p>To add the second menu simply add another key (menu name) and assign a value (enter description) into the array. Here&#8217;s an example of what it can look like when adding your second menu:</p>
<blockquote><p>register_nav_menus( array(<br />
&#8216;primary&#8217; =&gt; __( &#8216;Primary Navigation&#8217;, &#8216;twentyten&#8217; ),<br />
&#8216;secondary&#8217; =&gt; __( &#8216;Secondary Navigation&#8217;, &#8216;twentyten&#8217; ),<br />
) );</p></blockquote>
<p>This technique can be used in creating other free themes or child themes as well. If you have any questions, feel free to ask in the comment.</p>
<p><a href="http://www.wpbeginner.com/wp-tutorials/adding-a-second-menu-to-the-twenty-ten-theme/">Video: Adding a Second Menu to the WordPress Twenty Ten Theme</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-themes/adding-additional-default-headers-to-the-wordpress-twenty-ten-theme/' rel='bookmark' title='Permanent Link: Adding Additional Default Headers to the WordPress Twenty Ten Theme'>Adding Additional Default Headers to the WordPress Twenty Ten Theme</a></li>
<li><a href='http://www.wpbeginner.com/news/wordpress-3-0-thelonious-features-video/' rel='bookmark' title='Permanent Link: WordPress 3.0 &#8211; Thelonious Features (Video)'>WordPress 3.0 &#8211; Thelonious Features (Video)</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/save-time-by-adding-a-quick-edit-button-in-wordpress-posts/' rel='bookmark' title='Permanent Link: Save time by adding a Quick Edit Button in WordPress Posts'>Save time by adding a Quick Edit Button in WordPress Posts</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=A75S5jBXyEc:OdPSjK4Yvxg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=A75S5jBXyEc:OdPSjK4Yvxg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=A75S5jBXyEc:OdPSjK4Yvxg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=A75S5jBXyEc:OdPSjK4Yvxg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=A75S5jBXyEc:OdPSjK4Yvxg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=A75S5jBXyEc:OdPSjK4Yvxg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=A75S5jBXyEc:OdPSjK4Yvxg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=A75S5jBXyEc:OdPSjK4Yvxg:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/A75S5jBXyEc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/adding-a-second-menu-to-the-twenty-ten-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/wp-tutorials/adding-a-second-menu-to-the-twenty-ten-theme/</feedburner:origLink></item>
		<item>
		<title>Hydrogenize Free WordPress Theme</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/JEkR4-eSVUw/</link>
		<comments>http://www.wpbeginner.com/free-wordpress-themes/hydrogenize-free-wordpress-theme/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 11:44:06 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Free WordPress Themes]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[free theme]]></category>
		<category><![CDATA[free wordpress theme]]></category>
		<category><![CDATA[Hydrogenize]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=2003</guid>
		<description><![CDATA[The team of designers at <a href="http://www.paddsolutions.com" target="_blank" rel="nofollow">Padd Solutions</a> have created their first WordPress 3.0 compatible design to share with you. Hydrogenize Theme is a quaint theme that gives the user the ability to integrate videos, images, and advertisements into a single multipurpose sidebar. Hydrogenize also gives users the choice of five color schemes (blue, brown, cyan, green, and red) and comes Gravatar enabled for easy interaction. <p><a href="http://www.wpbeginner.com/free-wordpress-themes/hydrogenize-free-wordpress-theme/">Hydrogenize Free WordPress Theme</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/free-wordpress-themes/blue-rooster-free-wordpress-theme/' rel='bookmark' title='Permanent Link: Blue Rooster Free WordPress Theme'>Blue Rooster Free WordPress Theme</a></li>
<li><a href='http://www.wpbeginner.com/free-wordpress-themes/madblogger-free-wordpress-theme-by-wordpress-madness/' rel='bookmark' title='Permanent Link: MadBlogger Free WordPress Theme by WordPress Madness'>MadBlogger Free WordPress Theme by WordPress Madness</a></li>
<li><a href='http://www.wpbeginner.com/free-wordpress-themes/fashion-press-free-wordpress-theme/' rel='bookmark' title='Permanent Link: Fashion Press Free WordPress Theme'>Fashion Press Free WordPress Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The team of designers at <a href="http://www.paddsolutions.com" target="_blank" rel="nofollow">Padd Solutions</a> have created their first WordPress 3.0 compatible design to share with you. Hydrogenize Theme is a quaint theme that gives the user the ability to integrate videos, images, and advertisements into a single multipurpose sidebar. Hydrogenize also gives users the choice of five color schemes (blue, brown, cyan, green, and red) and comes Gravatar enabled for easy interaction. </p>
<p><a href="http://www.paddsolutions.com/wpmag/hydrogenize/" target="_blank" rel="nofollow"><img src="http://www.wpbeginner.com/blogpostsimages/freewpthemes/hydrogenize.gif" alt="Hydrogenize Theme for WordPress" style="padding: 5px; border: 1px solid #ddd;" /></a><br />
(Click on the Image for Live Demo)</p>
<h4>Features</h4>
<ol>
<li>5 Color Schemes (blue, brown, cyan, green, and red) </li>
<li>Automatic Thumbnail Resizer</li>
<li>Featured Video and Photo in Sidebar </li>
<li>Built-in Sidebar Ad Space</li>
<li>Home Page Image Slider</li>
</ol>
<p><a href="http://www.paddsolutions.com/wpmag/hydrogenize/" target="_blank" rel="nofollow"><img src="http://www.wpbeginner.com/blogpostsimages/freewpthemes/hydrogenize-child.gif" alt="Hydrogenize Theme for WordPress" style="padding: 5px; border: 1px solid #ddd;" /></a></p>
<h4><a href="http://www.paddsolutions.com/wp-content/plugins/download-monitor/download.php?id=124" target="_blank" rel="nofollow">Download Now</a></h4>
<p>Note to Designers: You can also submit your free WordPress themes for us to review and share with WPBeginner&#8217;s audience. Use our <a href="http://www.wpbeginner.com/make-a-suggestion/">Make a Suggestion</a> form.</p>
<p><a href="http://www.wpbeginner.com/free-wordpress-themes/hydrogenize-free-wordpress-theme/">Hydrogenize Free WordPress Theme</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/free-wordpress-themes/blue-rooster-free-wordpress-theme/' rel='bookmark' title='Permanent Link: Blue Rooster Free WordPress Theme'>Blue Rooster Free WordPress Theme</a></li>
<li><a href='http://www.wpbeginner.com/free-wordpress-themes/madblogger-free-wordpress-theme-by-wordpress-madness/' rel='bookmark' title='Permanent Link: MadBlogger Free WordPress Theme by WordPress Madness'>MadBlogger Free WordPress Theme by WordPress Madness</a></li>
<li><a href='http://www.wpbeginner.com/free-wordpress-themes/fashion-press-free-wordpress-theme/' rel='bookmark' title='Permanent Link: Fashion Press Free WordPress Theme'>Fashion Press Free WordPress Theme</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JEkR4-eSVUw:4az_z_W9g6Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JEkR4-eSVUw:4az_z_W9g6Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=JEkR4-eSVUw:4az_z_W9g6Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JEkR4-eSVUw:4az_z_W9g6Q:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JEkR4-eSVUw:4az_z_W9g6Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JEkR4-eSVUw:4az_z_W9g6Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=JEkR4-eSVUw:4az_z_W9g6Q:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JEkR4-eSVUw:4az_z_W9g6Q:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/JEkR4-eSVUw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/free-wordpress-themes/hydrogenize-free-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/free-wordpress-themes/hydrogenize-free-wordpress-theme/</feedburner:origLink></item>
		<item>
		<title>How to Exclude Pages from WordPress Search Results</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/tqVJYg5WA48/</link>
		<comments>http://www.wpbeginner.com/wp-tutorials/how-to-exclude-pages-from-wordpress-search-results/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 08:16:35 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[exclude pages from WordPress Search results]]></category>
		<category><![CDATA[how to exclude pages from WordPress search results]]></category>
		<category><![CDATA[how to exclude posts from WordPress search results]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=2000</guid>
		<description><![CDATA[By default, WordPress Search feature displays published posts and published pages in search results. Often when users are looking for something in a blog, it is most likely a post rather than a page. In this article, we will show you how to make your search more relevant and less crowded by excluding pages from WordPress search results.<p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-exclude-pages-from-wordpress-search-results/">How to Exclude Pages from WordPress Search Results</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-disable-the-search-feature-in-wordpress/' rel='bookmark' title='Permanent Link: How to Disable the Search Feature in WordPress'>How to Disable the Search Feature in WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-exclude-pages-from-the-menu-in-wordpress/' rel='bookmark' title='Permanent Link: How to Exclude Pages from the Menu in WordPress'>How to Exclude Pages from the Menu in WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/display-search-term-and-result-count-in-wordpress/' rel='bookmark' title='Permanent Link: Display Search Term and Result Count in WordPress'>Display Search Term and Result Count in WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>By default, WordPress Search feature displays published posts and published pages in search results. Often when users are looking for something in a blog, it is most likely a post rather than a page. In this article, we will show you how to make your search more relevant and less crowded by excluding pages from WordPress search results.</p>
<p>First open your theme&#8217;s <em>functions.php</em> file and paste this code:</p>
<blockquote><p>function SearchFilter($query) {<br />
    if ($query-&gt;is_search) {<br />
        $query-&gt;set(&#39;post_type&#39;, &#39;post&#39;);<br />
    }<br />
    return $query;<br />
}</p>
<p>add_filter(&#39;pre_get_posts&#39;,&#39;SearchFilter&#39;);</p></blockquote>
<p>Explanation: This code just searches for posts through setting the post_type. You can also make it do the opposite by setting the post_type to pages, so it only return pages in the search result.</p>
<p>Source: <a href="http://bavotasan.com/tutorials/excluding-pages-from-wordpress-search/" target="_blank" rel="nofollow">Bavotasan</a></p>
<p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-exclude-pages-from-wordpress-search-results/">How to Exclude Pages from WordPress Search Results</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-disable-the-search-feature-in-wordpress/' rel='bookmark' title='Permanent Link: How to Disable the Search Feature in WordPress'>How to Disable the Search Feature in WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-exclude-pages-from-the-menu-in-wordpress/' rel='bookmark' title='Permanent Link: How to Exclude Pages from the Menu in WordPress'>How to Exclude Pages from the Menu in WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/display-search-term-and-result-count-in-wordpress/' rel='bookmark' title='Permanent Link: Display Search Term and Result Count in WordPress'>Display Search Term and Result Count in WordPress</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=tqVJYg5WA48:WvYEgf_bhzI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=tqVJYg5WA48:WvYEgf_bhzI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=tqVJYg5WA48:WvYEgf_bhzI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=tqVJYg5WA48:WvYEgf_bhzI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=tqVJYg5WA48:WvYEgf_bhzI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=tqVJYg5WA48:WvYEgf_bhzI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=tqVJYg5WA48:WvYEgf_bhzI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=tqVJYg5WA48:WvYEgf_bhzI:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/tqVJYg5WA48" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/how-to-exclude-pages-from-wordpress-search-results/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/wp-tutorials/how-to-exclude-pages-from-wordpress-search-results/</feedburner:origLink></item>
		<item>
		<title>How to Add Social Media Share Count Widgets in WordPress</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/VVKjhyA3wb4/</link>
		<comments>http://www.wpbeginner.com/wp-themes/how-to-add-social-media-share-count-widgets-in-wordpress/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 15:10:58 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[facebook share count in wordpress]]></category>
		<category><![CDATA[how to add a digg count in wordpress]]></category>
		<category><![CDATA[how to add a SU counter in wordpress]]></category>
		<category><![CDATA[how to add facebook like in wordpress]]></category>
		<category><![CDATA[how to add google buzz count in wordpress]]></category>
		<category><![CDATA[how to add reddit count in wordpress]]></category>
		<category><![CDATA[how to add social media share count widgets]]></category>
		<category><![CDATA[how to add sphinn count in wordpress]]></category>
		<category><![CDATA[how to add stumbleupon count in wordpress]]></category>
		<category><![CDATA[how to customize digg count in wordpress]]></category>
		<category><![CDATA[how to customize tweetmeme count in wordpress]]></category>
		<category><![CDATA[social media share count widgets]]></category>
		<category><![CDATA[social media share count widgets in wordpress]]></category>
		<category><![CDATA[tweetmeme count widget in wordpress]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1997</guid>
		<description><![CDATA[Social media buttons are being replaced by the share count widgets such as tweetmeme retweet widget, digg counter, facebook share and more. In this article, we will show you how you can add different social media share count buttons in WordPress.<p><a href="http://www.wpbeginner.com/wp-themes/how-to-add-social-media-share-count-widgets-in-wordpress/">How to Add Social Media Share Count Widgets in WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-tutorials/official-facebook-share-count-button-for-your-wordpress/' rel='bookmark' title='Permanent Link: Official Facebook Share Count Button for your WordPress'>Official Facebook Share Count Button for your WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/social-media-cheat-sheet-for-wordpress/' rel='bookmark' title='Permanent Link: Social Media Cheat Sheet for WordPress'>Social Media Cheat Sheet for WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-add-a-live-facebook-share-button-to-your-wordpress/' rel='bookmark' title='Permanent Link: How to Add a Live Facebook Share Button to Your WordPress'>How to Add a Live Facebook Share Button to Your WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Earlier on this blog, we created a <a href="http://www.wpbeginner.com/wp-themes/social-media-cheat-sheet-for-wordpress/">Social Media Cheat Sheet for WordPress</a>, but that only showed you how to add social media buttons. As social media grows and the web matures, we are seeing less and less of the simple social media buttons. Social media buttons are being replaced by the share count widgets such as tweetmeme retweet widget, digg counter, facebook share and more. In this article, we will show you how you can add different social media share count buttons in WordPress.</p>
<h4>Grab the Original Widget</h4>
<p>Most of the share counts are a piece of JavaScript that you must retrieve from the social media service. This article is also meant to serve as a one stop shop. You can come here to find the location for top social media services because a lot of them makes it really hard to find on their sites. The goal of this article is to avoid using as many plugins as possible, so when you are picking the type choose site: Normal.</p>
<ul>
<li><a href="http://about.digg.com/button" target="_blank" rel="nofollow">Digg</a></li>
<li><a href="http://www.stumbleupon.com/buttons/" target="_blank" rel="nofollow">StumbleUpon</a></li>
<li><a href="http://help.tweetmeme.com/2009/04/06/tweetmeme-button/" target="_blank" rel="nofollow">Tweetmeme Retweet</a></li>
<li><a href="http://www.facebook.com/share/" target="_blank" rel="nofollow">Facebook Share</a></li>
<li><a href="http://developers.facebook.com/docs/reference/plugins/like" target="_blank" rel="nofollow">Facebook Like Button</a></li>
<li><a href="http://www.reddit.com/buttons/" target="_blank" rel="nofollow">Reddit</a></li>
<li><a href="http://njuice.com/button/" target="_blank" rel="nofollow">Njuice Google Buzz</a></li>
<li><a href="http://sphinn.com/widgets/" target="_blank" rel="nofollow">Sphinn</a></li>
</ul>
<h4>Customizing the Codes</h4>
<p>Because we chose the code for a Normal Site, we may need to modify it to make it compatible with WordPress. We are also going to be showing just the Compact Share Count Buttons. You can ofcourse use the codes as a guide to get different sizes.</p>
<p>Note: You must paste all of these codes inside a loop, most likely in your <em>single.php</em> file.</p>
<h3>Digg</h3>
<blockquote><p>&lt;script type=&quot;text/javascript&quot;&gt;<br />
(function() {<br />
var s = document.createElement(&#39;SCRIPT&#39;), s1 = document.getElementsByTagName(&#39;SCRIPT&#39;)[0];<br />
s.type = &#39;text/javascript&#39;;<br />
s.async = true;<br />
s.src = &#39;http://widgets.digg.com/buttons.js&#39;;<br />
s1.parentNode.insertBefore(s, s1);<br />
})();<br />
&lt;/script&gt;</p>
<p>&lt;a class=&quot;DiggThisButton DiggCompact&quot; href=&quot;http://digg.com/submit?url=&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;/a&gt;</p></blockquote>
<p>Normally, you should not have to add the href part of the link area. But if you don&#8217;t, and you have paginated comments or posts, then your digg button will not work on all pages. So if the main page was submitted, the second page will show a submit URL allowing users to submit duplicate content to digg.</p>
<h3>StumbleUpon</h3>
<blockquote><p>&lt;script src=&quot;http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;/script&gt;</p></blockquote>
<h3>Tweetmeme Retweet</h3>
<blockquote><p>&lt;script type=&quot;text/javascript&quot;&gt;<br />
tweetmeme_source = &#39;wpbeginner&#39;; tweetmeme_service = &#39;bit.ly&#39;; tweetmeme_style = &#39;compact&#39;; tweetmeme_url = &#39;&lt;?php the_permalink() ?&gt;&#39;;<br />
&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;http://tweetmeme.com/i/scripts/button.js&quot;&gt;&lt;/script&gt;</p></blockquote>
<p>Make sure that you change the Tweetmeme_source variable to your twitter handle. Right now it is @wpbeginner. So whenever someone clicks it will show RT @wpbeginner Post Title &#8211; Link. We are using bit.ly as the link shortening service, you can change it to others that tweetmeme offers, but bit.ly is the best one.</p>
<h3>Facebook Share</h3>
<blockquote><p>&lt;a name=&quot;fb_share&quot; type=&quot;button_count&quot; share_url=&quot;&lt;?php the_permalink(); ?&gt;&quot; href=&quot;http://www.facebook.com/sharer.php&quot;&gt;Share&lt;/a&gt;&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Share&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</p></blockquote>
<h3>Facebook Like Button</h3>
<p>Facebook Like Button is a phonemonal tool for traffic. Syed has shown how it has helped in our <a href="http://www.wpbeginner.com/wordpress-newsletter/">WordPress Newsletter</a> in the past.</p>
<blockquote><p>&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=&lt;?php echo urlencode(get_permalink($post-&gt;ID)); ?&gt;&amp;amp;layout=standard&amp;amp;show_faces=false&amp;amp;width=450&amp;amp;action=like&amp;amp;colorscheme=light&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; allowTransparency=&quot;true&quot; style=&quot;border:none; overflow:hidden; width:450px; height:60px;&quot;&gt;&lt;/iframe&gt;</p></blockquote>
<p>To see more options see <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-facebook-like-button-in-wordpress/">How to Add Facebook Like button in WordPress</a>.</p>
<h3>Reddit</h3>
<blockquote><p>&lt;script type=&quot;text/javascript&quot;&gt;<br />
  reddit_url = &quot;&lt;?php the_permalink(); ?&gt;&quot;;<br />
  reddit_title = &quot;&lt;?php the_title(); ?&gt;&quot;;<br />
&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;http://reddit.com/static/button/button1.js&quot;&gt;&lt;/script&gt;</p></blockquote>
<h3>Njuice Google Buzz Count</h3>
<p>Google Buzz do not have an active API that allows to keep track of count. There are a few ways to work around that which gives you some what of a misguided count. But for those users, who want to have a Google Buzz Count, then here is how you can add it.</p>
<blockquote><p>&lt;script type=&quot;text/javascript&quot;&gt;<br />
var njuice_buzz_size = &#39;small&#39;;<br />
var njuice_buzz_title = &#39;&lt;?php the_title(); ?&gt;&#39;;<br />
var njuice_buzz_url = &#39;&lt;?php the_permalink(); ?&gt;&#39;;<br />
&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;http://button.njuice.com/buzz.js&quot;&gt;&lt;/script&gt;</p></blockquote>
<h3>Sphinn</h3>
<blockquote><p>&lt;script type=&quot;text/javascript&quot;&gt;submit_url = &#39;&lt;?php the_permalink(); ?&gt;&#39;;&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot; src=&quot;http://sphinn.com/evb/buttons.php?b=small&quot;&gt;&lt;/script&gt;</p></blockquote>
<p>That is all the customizing we need to make each of these widgets work with WordPress perfectly. Now, you may have to customize the styling for it to work with your theme design. You are better of putting these codes above <strong>&lt;?php the_content(); ?&gt;</strong> code. You can also use our <a href="http://www.wpbeginner.com/smart-sharing-plugin-for-wordpress/">Smart Sharing Plugin</a>, to display a floating icon down your window.</p>
<p>Do you have any other social media widgets that you would like to add? Let us know, and we can get the codes here. If you are using another widget and have the code ready, then please submit it to us, so others can benefit from it as well.</p>
<p><a href="http://www.wpbeginner.com/wp-themes/how-to-add-social-media-share-count-widgets-in-wordpress/">How to Add Social Media Share Count Widgets in WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-tutorials/official-facebook-share-count-button-for-your-wordpress/' rel='bookmark' title='Permanent Link: Official Facebook Share Count Button for your WordPress'>Official Facebook Share Count Button for your WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/social-media-cheat-sheet-for-wordpress/' rel='bookmark' title='Permanent Link: Social Media Cheat Sheet for WordPress'>Social Media Cheat Sheet for WordPress</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-add-a-live-facebook-share-button-to-your-wordpress/' rel='bookmark' title='Permanent Link: How to Add a Live Facebook Share Button to Your WordPress'>How to Add a Live Facebook Share Button to Your WordPress</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=VVKjhyA3wb4:UvDNOrerH5A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=VVKjhyA3wb4:UvDNOrerH5A:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=VVKjhyA3wb4:UvDNOrerH5A:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=VVKjhyA3wb4:UvDNOrerH5A:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=VVKjhyA3wb4:UvDNOrerH5A:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=VVKjhyA3wb4:UvDNOrerH5A:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=VVKjhyA3wb4:UvDNOrerH5A:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=VVKjhyA3wb4:UvDNOrerH5A:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/VVKjhyA3wb4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-themes/how-to-add-social-media-share-count-widgets-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/wp-themes/how-to-add-social-media-share-count-widgets-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>Adding Additional Default Headers to the WordPress Twenty Ten Theme</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/feTngiaNCg4/</link>
		<comments>http://www.wpbeginner.com/wp-themes/adding-additional-default-headers-to-the-wordpress-twenty-ten-theme/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 12:33:37 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[add wordpress default headers]]></category>
		<category><![CDATA[how add default headers in twenty ten theme]]></category>
		<category><![CDATA[how to add headers in wordpress 3.0]]></category>
		<category><![CDATA[how to add more default headers in twenty ten theme.]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1974</guid>
		<description><![CDATA[The Twenty Ten theme comes with eight default headers. Any default header that you set is replaced with the "featured image" of a post. You can only see the new header when viewing that post. In this week's WordPress Quick Tip we'll see how simple it is to add additional headers to the Header's Panel.<p><a href="http://www.wpbeginner.com/wp-themes/adding-additional-default-headers-to-the-wordpress-twenty-ten-theme/">Adding Additional Default Headers to the WordPress Twenty Ten Theme</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-themes/how-to-enable-custom-header-images-panel-in-wordpress-3-0/' rel='bookmark' title='Permanent Link: How to Enable Custom Header Images Panel in WordPress 3.0'>How to Enable Custom Header Images Panel in WordPress 3.0</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/adding-a-second-menu-to-the-twenty-ten-theme/' rel='bookmark' title='Permanent Link: Video: Adding a Second Menu to the WordPress Twenty Ten Theme'>Video: Adding a Second Menu to the WordPress Twenty Ten Theme</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/adding-a-custom-dashboard-logo-in-wordpress-for-branding/' rel='bookmark' title='Permanent Link: Adding a Custom Dashboard Logo in WordPress for Branding'>Adding a Custom Dashboard Logo in WordPress for Branding</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The Twenty Ten theme comes with eight default headers. Any default header that you set is replaced with the &#8220;featured image&#8221; of a post. You can only see the new header when viewing that post. In this week&#8217;s WordPress Quick Tip we&#8217;ll see how simple it is to add additional headers to the Header&#8217;s Panel.</p>
<h2>Watch the Screencast</h2>
<p><embed src="http://blip.tv/play/hdgAgeyKIwI" type="application/x-shockwave-flash" width="480" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<h2>Functions.php</h2>
<p>Open up the functions.php file of the Twenty Ten theme. Locate the following section:</p>
<blockquote><p>// Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI.</p></blockquote>
<p>What follows is an array listing the current default headers and their location. To add your own, add a comma after the last parenthesis of the array of sunset header. Here&#8217;s an example of what it can look like after adding two more headers:</p>
<blockquote><p>register_default_headers( array(<br />
&#8216;berries&#8217; =&gt; array(<br />
&#8216;url&#8217; =&gt; &#8216;%s/images/headers/berries.jpg&#8217;,<br />
&#8216;thumbnail_url&#8217; =&gt; &#8216;%s/images/headers/berries-thumbnail.jpg&#8217;,<br />
/* translators: header image description */<br />
&#8216;description&#8217; =&gt; __( &#8216;Berries&#8217;, &#8216;twentyten&#8217; )<br />
),<br />
&#8216;cherryblossom&#8217; =&gt; array(<br />
&#8216;url&#8217; =&gt; &#8216;%s/images/headers/cherryblossoms.jpg&#8217;,<br />
&#8216;thumbnail_url&#8217; =&gt; &#8216;%s/images/headers/cherryblossoms-thumbnail.jpg&#8217;,<br />
/* translators: header image description */<br />
&#8216;description&#8217; =&gt; __( &#8216;Cherry Blossoms&#8217;, &#8216;twentyten&#8217; )<br />
),<br />
&#8216;concave&#8217; =&gt; array(<br />
&#8216;url&#8217; =&gt; &#8216;%s/images/headers/concave.jpg&#8217;,<br />
&#8216;thumbnail_url&#8217; =&gt; &#8216;%s/images/headers/concave-thumbnail.jpg&#8217;,<br />
/* translators: header image description */<br />
&#8216;description&#8217; =&gt; __( &#8216;Concave&#8217;, &#8216;twentyten&#8217; )<br />
),<br />
&#8216;fern&#8217; =&gt; array(<br />
&#8216;url&#8217; =&gt; &#8216;%s/images/headers/fern.jpg&#8217;,<br />
&#8216;thumbnail_url&#8217; =&gt; &#8216;%s/images/headers/fern-thumbnail.jpg&#8217;,<br />
/* translators: header image description */<br />
&#8216;description&#8217; =&gt; __( &#8216;Fern&#8217;, &#8216;twentyten&#8217; )<br />
),<br />
&#8216;forestfloor&#8217; =&gt; array(<br />
&#8216;url&#8217; =&gt; &#8216;%s/images/headers/forestfloor.jpg&#8217;,<br />
&#8216;thumbnail_url&#8217; =&gt; &#8216;%s/images/headers/forestfloor-thumbnail.jpg&#8217;,<br />
/* translators: header image description */<br />
&#8216;description&#8217; =&gt; __( &#8216;Forest Floor&#8217;, &#8216;twentyten&#8217; )<br />
),<br />
&#8216;inkwell&#8217; =&gt; array(<br />
&#8216;url&#8217; =&gt; &#8216;%s/images/headers/inkwell.jpg&#8217;,<br />
&#8216;thumbnail_url&#8217; =&gt; &#8216;%s/images/headers/inkwell-thumbnail.jpg&#8217;,<br />
/* translators: header image description */<br />
&#8216;description&#8217; =&gt; __( &#8216;Inkwell&#8217;, &#8216;twentyten&#8217; )<br />
),<br />
&#8216;path&#8217; =&gt; array(<br />
&#8216;url&#8217; =&gt; &#8216;%s/images/headers/path.jpg&#8217;,<br />
&#8216;thumbnail_url&#8217; =&gt; &#8216;%s/images/headers/path-thumbnail.jpg&#8217;,<br />
/* translators: header image description */<br />
&#8216;description&#8217; =&gt; __( &#8216;Path&#8217;, &#8216;twentyten&#8217; )<br />
),<br />
&#8216;sunset&#8217; =&gt; array(<br />
&#8216;url&#8217; =&gt; &#8216;%s/images/headers/sunset.jpg&#8217;,<br />
&#8216;thumbnail_url&#8217; =&gt; &#8216;%s/images/headers/sunset-thumbnail.jpg&#8217;,<br />
/* translators: header image description */<br />
&#8216;description&#8217; =&gt; __( &#8216;Sunset&#8217;, &#8216;twentyten&#8217; )<br />
),<br />
&#8216;waterfall&#8217; =&gt; array(<br />
&#8216;url&#8217; =&gt; &#8216;%s/images/headers/waterfall.jpg&#8217;,<br />
&#8216;thumbnail_url&#8217; =&gt; &#8216;%s/images/headers/waterfall-thumbnail.jpg&#8217;,<br />
/* translators: header image description */<br />
&#8216;description&#8217; =&gt; __( &#8216;Waterfall&#8217;, &#8216;twentyten&#8217; )<br />
),<br />
&#8216;mountain&#8217; =&gt; array(<br />
&#8216;url&#8217; =&gt; &#8216;%s/images/headers/mountain.jpg&#8217;,<br />
&#8216;thumbnail_url&#8217; =&gt; &#8216;%s/images/headers/mountain-thumbnail.jpg&#8217;,<br />
/* translators: header image description */<br />
&#8216;description&#8217; =&gt; __( &#8216;Mountain&#8217;, &#8216;twentyten&#8217; )<br />
)<br />
) );</p></blockquote>
<h3>Lets dissect the code a little bit.</h3>
<p><strong>register_default_headers : </strong>This is the function that creates and displays our default headers. It accepts an array of parameters.</p>
<p><strong>name:</strong> Sets a value with our headers name. We can then set an array of additional values and keys.</p>
<p><strong>url:</strong> Relative path to the header image. Notice that the current path is /images/headers/image_name.jpg</p>
<p><strong>thumbnail_url: </strong>Relative path to a thumbnail of the header image. Current path is /images/headers/image_name-thumbnail.jpg</p>
<p><strong>description: </strong>A description of the image. This would be display upon hovering over the image inside the Headers Panel.</p>
<h2>Things to Note</h2>
<p>The Twenty Ten header is 940&#215;198, anything bigger than that would be resized; anything smaller would be stretch to fit those dimensions. The thumbnail images can be set to any dimensions, 230&#215;48 is the default. The images can only be .jpg or they will be ignored and won&#8217;t be displayed.</p>
<p><a href="http://www.wpbeginner.com/wp-themes/adding-additional-default-headers-to-the-wordpress-twenty-ten-theme/">Adding Additional Default Headers to the WordPress Twenty Ten Theme</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/wp-themes/how-to-enable-custom-header-images-panel-in-wordpress-3-0/' rel='bookmark' title='Permanent Link: How to Enable Custom Header Images Panel in WordPress 3.0'>How to Enable Custom Header Images Panel in WordPress 3.0</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/adding-a-second-menu-to-the-twenty-ten-theme/' rel='bookmark' title='Permanent Link: Video: Adding a Second Menu to the WordPress Twenty Ten Theme'>Video: Adding a Second Menu to the WordPress Twenty Ten Theme</a></li>
<li><a href='http://www.wpbeginner.com/wp-themes/adding-a-custom-dashboard-logo-in-wordpress-for-branding/' rel='bookmark' title='Permanent Link: Adding a Custom Dashboard Logo in WordPress for Branding'>Adding a Custom Dashboard Logo in WordPress for Branding</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=feTngiaNCg4:Mj8pnvcStPc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=feTngiaNCg4:Mj8pnvcStPc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=feTngiaNCg4:Mj8pnvcStPc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=feTngiaNCg4:Mj8pnvcStPc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=feTngiaNCg4:Mj8pnvcStPc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=feTngiaNCg4:Mj8pnvcStPc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=feTngiaNCg4:Mj8pnvcStPc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=feTngiaNCg4:Mj8pnvcStPc:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/feTngiaNCg4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-themes/adding-additional-default-headers-to-the-wordpress-twenty-ten-theme/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/wp-themes/adding-additional-default-headers-to-the-wordpress-twenty-ten-theme/</feedburner:origLink></item>
		<item>
		<title>Lucky Winners of iThemes WordPress Themes Giveaway</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/G49UtulsKDQ/</link>
		<comments>http://www.wpbeginner.com/news/lucky-winners-of-ithemes-wordpress-themes-giveaway/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 13:37:38 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[commercial wordpress themes]]></category>
		<category><![CDATA[free ithemes]]></category>
		<category><![CDATA[free premium wordpress themes]]></category>
		<category><![CDATA[giveaway]]></category>
		<category><![CDATA[ithemes]]></category>
		<category><![CDATA[ithemes giveaway]]></category>
		<category><![CDATA[wordpress themes giveaway]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1966</guid>
		<description><![CDATA[This past week, we had a fantastic opportunity to giveway one of the most popular WordPress theme providers, <a href="http://www.wpbeginner.com/refer/ithemes">iThemes</a>. We really want to thank Cory Miller (@corymiller303) for helping us orchestrate this giveaway. We are giving away 10 copies of the <a href="http://www.wpbeginner.com/refer/ithemes">iThemes</a> WordPress theme, and each of our winners get to choose the theme that they like. <p><a href="http://www.wpbeginner.com/news/lucky-winners-of-ithemes-wordpress-themes-giveaway/">Lucky Winners of iThemes WordPress Themes Giveaway</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/news/giveaway-get-your-free-copy-of-ithemes-wordpress-themes/' rel='bookmark' title='Permanent Link: Giveaway &#8211; Get your Free Copy of iThemes WordPress Themes'>Giveaway &#8211; Get your Free Copy of iThemes WordPress Themes</a></li>
<li><a href='http://www.wpbeginner.com/news/lucky-winners-for-templatic-wordpress-themes-giveaway/' rel='bookmark' title='Permanent Link: Lucky Winners for Templatic WordPress Themes Giveaway'>Lucky Winners for Templatic WordPress Themes Giveaway</a></li>
<li><a href='http://www.wpbeginner.com/news/lucky-winners-of-studiopress-wordpress-themes-giveaway/' rel='bookmark' title='Permanent Link: Lucky Winners of StudioPress WordPress Themes Giveaway'>Lucky Winners of StudioPress WordPress Themes Giveaway</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This past week, we had a fantastic opportunity to giveway one of the most popular WordPress theme providers, <a href="http://www.wpbeginner.com/refer/ithemes">iThemes</a>. We really want to thank Cory Miller (@corymiller303) for helping us orchestrate this giveaway. We are giving away 10 copies of the <a href="http://www.wpbeginner.com/refer/ithemes">iThemes</a> WordPress theme, and each of our winners get to choose the theme that they like. </p>
<p>This was a twitter-exclusive contest where users were required to tweet about the contest and post a comment with their twitter link. Last requirement was that they must follow @wpbeginner on twitter, so we could notify them via Direct Message.</p>
<p>Winners were selected randomly. Each entry was assigned a number, and the chosen ones received our Direct messages.</p>
<p>Contest Winners:<br />
@Pixelbits<br />
@ygirod<br />
@gregflewelling<br />
@EzyBlogger<br />
@nathanbriggs<br />
@CourtneySpeaks<br />
@sarakateladybug<br />
@satryabima<br />
@kuzman0v<br />
@ElkinsSherpa</p>
<p>There were 100+ entries in the contest, so a lot of you did not get the chance to win. <a href="http://www.wpbeginner.com/refer/ithemes">iThemes</a> has tons of awesome themes to offer, so we recommend that you check out their <a href="http://www.wpbeginner.com/refer/ithemes">store</a> for the full list.</p>
<p>Lastly, we want to thank the great team at <a href="http://www.wpbeginner.com/refer/ithemes" style="" target="_blank" rel="nofollow" >iThemes</a> for doing such a wonderful job and for sponsoring this giveaway. You can follow them here:<br />
@<a href="http://www.wpbeginner.com/refer/ithemes" style="" target="_blank" rel="nofollow" >ithemes</a><br />
@corymiller303<br />
@benjaminbradley<br />
@tedvid<br />
@adbrad<br />
@sarah_sheldon<br />
@dustinbolton<br />
@chrisjean<br />
@vanweerd<br />
@mattdanner</p>
<p><a href="http://www.wpbeginner.com/news/lucky-winners-of-ithemes-wordpress-themes-giveaway/">Lucky Winners of iThemes WordPress Themes Giveaway</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/news/giveaway-get-your-free-copy-of-ithemes-wordpress-themes/' rel='bookmark' title='Permanent Link: Giveaway &#8211; Get your Free Copy of iThemes WordPress Themes'>Giveaway &#8211; Get your Free Copy of iThemes WordPress Themes</a></li>
<li><a href='http://www.wpbeginner.com/news/lucky-winners-for-templatic-wordpress-themes-giveaway/' rel='bookmark' title='Permanent Link: Lucky Winners for Templatic WordPress Themes Giveaway'>Lucky Winners for Templatic WordPress Themes Giveaway</a></li>
<li><a href='http://www.wpbeginner.com/news/lucky-winners-of-studiopress-wordpress-themes-giveaway/' rel='bookmark' title='Permanent Link: Lucky Winners of StudioPress WordPress Themes Giveaway'>Lucky Winners of StudioPress WordPress Themes Giveaway</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=G49UtulsKDQ:o5lt0chbs9I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=G49UtulsKDQ:o5lt0chbs9I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=G49UtulsKDQ:o5lt0chbs9I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=G49UtulsKDQ:o5lt0chbs9I:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=G49UtulsKDQ:o5lt0chbs9I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=G49UtulsKDQ:o5lt0chbs9I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=G49UtulsKDQ:o5lt0chbs9I:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=G49UtulsKDQ:o5lt0chbs9I:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/G49UtulsKDQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/news/lucky-winners-of-ithemes-wordpress-themes-giveaway/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/news/lucky-winners-of-ithemes-wordpress-themes-giveaway/</feedburner:origLink></item>
		<item>
		<title>Persevero – Free Genesis Child Theme by WPBeginner</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/c5W5SXaVWAU/</link>
		<comments>http://www.wpbeginner.com/free-wordpress-themes/persevero-free-genesis-child-theme-by-wpbeginner/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 18:15:54 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Free WordPress Themes]]></category>
		<category><![CDATA[free genesis child themes]]></category>
		<category><![CDATA[free themes]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[genesis child theme]]></category>
		<category><![CDATA[persevero]]></category>
		<category><![CDATA[wpbeginner freebie]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1961</guid>
		<description><![CDATA[WPBeginner is proud to announce our very first FREE theme release. Dronix (@dronixs) from WPBeginner created a Free Child Theme for the best WordPress Framework (<a href="http://www.wpbeginner.com/refer/studiopress" target="_blank" rel="nofollow">Genesis by StudioPress</a>). We released this theme to celebrate the one year anniversary of WPBeginner.<p><a href="http://www.wpbeginner.com/free-wordpress-themes/persevero-free-genesis-child-theme-by-wpbeginner/">Persevero &#8211; Free Genesis Child Theme by WPBeginner</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/news/lucky-winners-of-studiopress-wordpress-themes-giveaway/' rel='bookmark' title='Permanent Link: Lucky Winners of StudioPress WordPress Themes Giveaway'>Lucky Winners of StudioPress WordPress Themes Giveaway</a></li>
<li><a href='http://www.wpbeginner.com/free-wordpress-themes/hydrogenize-free-wordpress-theme/' rel='bookmark' title='Permanent Link: Hydrogenize Free WordPress Theme'>Hydrogenize Free WordPress Theme</a></li>
<li><a href='http://www.wpbeginner.com/news/giveaway-get-your-free-copy-of-headway-wordpress-theme/' rel='bookmark' title='Permanent Link: Giveaway &#8211; Get your Free Copy of Headway WordPress Theme'>Giveaway &#8211; Get your Free Copy of Headway WordPress Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>WPBeginner is proud to announce our very first FREE theme release. For those of you, who are not following us on <a href="http://twitter.com/wpbeginner">twitter</a>, you probably missed our birthday (July 4th). This site is one year old now. Due to this special day, we decided to give back to our beloved users who have supported us through out. We are truly honored for your support and without you this site would not have been where it is. Dronix (@dronixs) from WPBeginner created a Free Child Theme for the best WordPress Framework (<a href="http://www.wpbeginner.com/refer/studiopress" target="_blank" rel="nofollow">Genesis by StudioPress</a>). We released this theme first to our <a href="http://www.wpbeginner.com/wordpress-newsletter/">Newsletter Subscribers</a> who got this with other special deals as well.</p>
<p>So lets see what this theme has to offer:</p>
<p><img src="http://www.wpbeginner.com/blogposts/persevero.gif" alt="Persevero - Free Genesis Child Theme" /></p>
<h4><a href="http://www.demo.wpbeginner.com/persevero/">Live Demo</a></h4>
<p>This theme has all features that <a href="http://www.wpbeginner.com/refer/studiopress" target="_blank" rel="nofollow">Genesis Framework</a> has to offer. Even though Genesis Framework is paid framework, we recommend that you get it now. There are tons of awesome Child Themes for it (both free and paid). Aside from that, we will be releasing other FREE Genesis Child Themes as well.</p>
<p>If you buy Genesis Framework Package Today (July 5th, 2010), then you will get 2 Additional Child Themes Free. So technically, you are getting 4 child themes. You can use these themes on as many sites you like due to the awesome GPL License. So your purchase can be for 4 different sites <img src='http://www.wpbeginner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  How can you do this?</p>
<p>1. Purchase a <a href="http://www.wpbeginner.com/refer/studiopress" target="_blank" rel="nofollow">Genesis Child Theme Package</a><br />
2. Use Coupon: <strong>GENESIS2</strong><br />
3. <a href="http://www.wpbeginner.com/wp-content/downloads/persevero.zip" target="_blank" rel="nofollow">Download Persevero</a> (Our Free Child Theme)</p>
<p>If you don&#8217;t want the deal above because you already own the Genesis Framework, then use the link below to download the Persevero Theme.</p>
<p><a href="http://www.wpbeginner.com/wp-content/downloads/persevero.zip" target="_blank" rel="nofollow">Download Persevero Child Theme</a></p>
<p><a href="http://www.wpbeginner.com/free-wordpress-themes/persevero-free-genesis-child-theme-by-wpbeginner/">Persevero &#8211; Free Genesis Child Theme by WPBeginner</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/news/lucky-winners-of-studiopress-wordpress-themes-giveaway/' rel='bookmark' title='Permanent Link: Lucky Winners of StudioPress WordPress Themes Giveaway'>Lucky Winners of StudioPress WordPress Themes Giveaway</a></li>
<li><a href='http://www.wpbeginner.com/free-wordpress-themes/hydrogenize-free-wordpress-theme/' rel='bookmark' title='Permanent Link: Hydrogenize Free WordPress Theme'>Hydrogenize Free WordPress Theme</a></li>
<li><a href='http://www.wpbeginner.com/news/giveaway-get-your-free-copy-of-headway-wordpress-theme/' rel='bookmark' title='Permanent Link: Giveaway &#8211; Get your Free Copy of Headway WordPress Theme'>Giveaway &#8211; Get your Free Copy of Headway WordPress Theme</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=c5W5SXaVWAU:xrUaX8eUrlc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=c5W5SXaVWAU:xrUaX8eUrlc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=c5W5SXaVWAU:xrUaX8eUrlc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=c5W5SXaVWAU:xrUaX8eUrlc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=c5W5SXaVWAU:xrUaX8eUrlc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=c5W5SXaVWAU:xrUaX8eUrlc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=c5W5SXaVWAU:xrUaX8eUrlc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=c5W5SXaVWAU:xrUaX8eUrlc:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/c5W5SXaVWAU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/free-wordpress-themes/persevero-free-genesis-child-theme-by-wpbeginner/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/free-wordpress-themes/persevero-free-genesis-child-theme-by-wpbeginner/</feedburner:origLink></item>
		<item>
		<title>Giveaway – Get your Free Copy of iThemes WordPress Themes</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/Wwih1DoYP30/</link>
		<comments>http://www.wpbeginner.com/news/giveaway-get-your-free-copy-of-ithemes-wordpress-themes/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 13:19:36 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[commercial wordpress themes]]></category>
		<category><![CDATA[free ithemes]]></category>
		<category><![CDATA[free premium wordpress themes]]></category>
		<category><![CDATA[giveaway]]></category>
		<category><![CDATA[ithemes]]></category>
		<category><![CDATA[ithemes giveaway]]></category>
		<category><![CDATA[wordpress themes giveaway]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1956</guid>
		<description><![CDATA[WPBeginner is proud to announce the giveaway of one of the most popular WordPress theme provider, <a href="http://www.wpbeginner.com/refer/ithemes" target="_blank" rel="nofollow">iThemes</a>. Thanks to Cory Miller (@corymiller303) for working closely with us and running this giveaway for you guys. iThemes is one of the leaders in producing high-quality commercial WordPress themes for photographers, designers, and businesses.<p><a href="http://www.wpbeginner.com/news/giveaway-get-your-free-copy-of-ithemes-wordpress-themes/">Giveaway &#8211; Get your Free Copy of iThemes WordPress Themes</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/news/lucky-winners-of-ithemes-wordpress-themes-giveaway/' rel='bookmark' title='Permanent Link: Lucky Winners of iThemes WordPress Themes Giveaway'>Lucky Winners of iThemes WordPress Themes Giveaway</a></li>
<li><a href='http://www.wpbeginner.com/news/giveaway-get-your-free-copy-of-templatic-wordpress-themes/' rel='bookmark' title='Permanent Link: Giveaway &#8211; Get Your Free Copy of Templatic WordPress Themes'>Giveaway &#8211; Get Your Free Copy of Templatic WordPress Themes</a></li>
<li><a href='http://www.wpbeginner.com/news/giveaway-get-your-free-copy-of-studiopress-themes/' rel='bookmark' title='Permanent Link: Giveaway &#8211; Get your Free Copy of StudioPress WordPress Themes'>Giveaway &#8211; Get your Free Copy of StudioPress WordPress Themes</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>WPBeginner is proud to announce the giveaway of one of the most popular WordPress theme provider, <a href="http://www.wpbeginner.com/refer/ithemes" target="_blank" rel="nofollow">iThemes</a>. Thanks to Cory Miller (@corymiller303) for working closely with us and running this giveaway for you guys. <a href="http://www.wpbeginner.com/refer/ithemes" style="" target="_blank" rel="nofollow" >iThemes</a> is one of the leaders in producing high-quality commercial WordPress themes for photographers, designers, and businesses.</p>
<h4>Prize</h4>
<p>We will giveaway 10 copies of <a href="http://www.wpbeginner.com/refer/ithemes" style="" target="_blank" rel="nofollow" >iThemes</a> WordPress theme. Winners get to choose the theme that they like.</p>
<p><a href="http://www.wpbeginner.com/refer/ithemes" target="_blank" rel="nofollow">iThemes</a> has tons of awesome themes to offer, so we recommend that you check out their <a href="http://www.wpbeginner.com/refer/ithemes" target="_blank" rel="nofollow">store</a> for the full list. Below is just a preview of some of their themes:</p>
<p><a href="http://www.wpbeginner.com/refer/ithemes" target="_blank" rel="nofollow"><img src="http://www.wpbeginner.com/blogposts/ithemes.gif" alt="iThemes Theme Preview" /></a></p>
<h4>How to Win?</h4>
<p>This will be a twitter exclusive contest. The guidelines are very simple. Just tweet:</p>
<blockquote><p>Win a free copy of @<a href="http://www.wpbeginner.com/refer/ithemes" style="" target="_blank" rel="nofollow" >ithemes</a> #WordPress Themes from @wpbeginner – http://bit.ly/9Ywg4t (RT to Enter)</p></blockquote>
<p>Note: You may modify the tweet as long as you mention (@ithemes and @wpbeginner with a link to this post).</p>
<p>Once you have tweeted, simply come back to this post and comment with a link to your tweet and your username.</p>
<p><strong>Make sure that you are following @wpbeginner on twitter, so we can send a Direct Message to notify the winners.</strong></p>
<h4>Thank you iThemes team</h4>
<p>We want to thank iThemes team for sponsoring this giveaway. They are really awesome people that we got a chance to meet at <a href="http://www.wpbeginner.com/events/wordcamp-raleigh-2010-overview/">WordCamp Raleigh</a>. They also sent Syed some awesome shirts that says &#8220;My Blog can beat up Your Blog&#8221;. If you guys don’t mind make sure that you check them out and follow them on twitter:</p>
<p>@ithemes<br />
@corymiller303<br />
@benjaminbradley<br />
@tedvid<br />
@adbrad<br />
@sarah_sheldon<br />
@dustinbolton<br />
@chrisjean<br />
@vanweerd<br />
@mattdanner</p>
<p><strong>Winners will be chosen randomly, and we will announce the winners on July 6, 2010 on this blog.</strong></p>
<p><a href="http://www.wpbeginner.com/news/giveaway-get-your-free-copy-of-ithemes-wordpress-themes/">Giveaway &#8211; Get your Free Copy of iThemes WordPress Themes</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/news/lucky-winners-of-ithemes-wordpress-themes-giveaway/' rel='bookmark' title='Permanent Link: Lucky Winners of iThemes WordPress Themes Giveaway'>Lucky Winners of iThemes WordPress Themes Giveaway</a></li>
<li><a href='http://www.wpbeginner.com/news/giveaway-get-your-free-copy-of-templatic-wordpress-themes/' rel='bookmark' title='Permanent Link: Giveaway &#8211; Get Your Free Copy of Templatic WordPress Themes'>Giveaway &#8211; Get Your Free Copy of Templatic WordPress Themes</a></li>
<li><a href='http://www.wpbeginner.com/news/giveaway-get-your-free-copy-of-studiopress-themes/' rel='bookmark' title='Permanent Link: Giveaway &#8211; Get your Free Copy of StudioPress WordPress Themes'>Giveaway &#8211; Get your Free Copy of StudioPress WordPress Themes</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Wwih1DoYP30:qGakgvKAJKQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Wwih1DoYP30:qGakgvKAJKQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=Wwih1DoYP30:qGakgvKAJKQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Wwih1DoYP30:qGakgvKAJKQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Wwih1DoYP30:qGakgvKAJKQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Wwih1DoYP30:qGakgvKAJKQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=Wwih1DoYP30:qGakgvKAJKQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Wwih1DoYP30:qGakgvKAJKQ:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/Wwih1DoYP30" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/news/giveaway-get-your-free-copy-of-ithemes-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>113</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/news/giveaway-get-your-free-copy-of-ithemes-wordpress-themes/</feedburner:origLink></item>
		<item>
		<title>Useful WordPress Configuration Tricks That You May Not Know</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/Xa6j0BnPE7A/</link>
		<comments>http://www.wpbeginner.com/wp-tutorials/useful-wordpress-configuration-tricks-that-you-may-not-know/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 19:15:12 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[awesome wordpress tricks]]></category>
		<category><![CDATA[most wanted wordpress tricks]]></category>
		<category><![CDATA[wordpress configuration tricks]]></category>
		<category><![CDATA[wordpress hacks]]></category>
		<category><![CDATA[wordpress tricks]]></category>
		<category><![CDATA[wp-config tricks]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1947</guid>
		<description><![CDATA[If <a href="http://www.wpbeginner.com/wp-tutorials/25-extremely-useful-tricks-for-the-wordpress-functions-file/">functions.php</a> is the single most important file in your WordPress theme, then <em>wp-config.php</em> is the single most important file in your entire WordPress installation. In this article, we will share some of the most useful WordPress configuration tricks that you may not know yet.<p><a href="http://www.wpbeginner.com/wp-tutorials/useful-wordpress-configuration-tricks-that-you-may-not-know/">Useful WordPress Configuration Tricks That You May Not Know</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/beginners-guide/what-why-and-hows-of-wordpress-security-keys/' rel='bookmark' title='Permanent Link: What, Why, and Hows of WordPress Security Keys'>What, Why, and Hows of WordPress Security Keys</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-disable-post-revisions-in-wordpress-and-reduce-database-size/' rel='bookmark' title='Permanent Link: How to Disable Post Revisions in WordPress and Reduce Database Size'>How to Disable Post Revisions in WordPress and Reduce Database Size</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/18-useful-tricks-to-speed-up-wordpress-boost-performance/' rel='bookmark' title='Permanent Link: 18 Useful Tricks To Speed Up WordPress &amp; Boost Performance'>18 Useful Tricks To Speed Up WordPress &amp; Boost Performance</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If <a href="http://www.wpbeginner.com/wp-tutorials/25-extremely-useful-tricks-for-the-wordpress-functions-file/">functions.php</a> is the single most important file in your WordPress theme, then <em>wp-config.php</em> is the single most important file in your entire WordPress installation. This file can be used to configure database functionalities, enhance performance, and improve security on all WordPress powered websites and blogs. In this article, we will share some of the most useful WordPress configuration tricks that you may not know yet.</p>
<p>By default, WordPress installation does not come with a file <em>wp-config.php</em>. The default install comes with a sample file known as <em>wp-config-sample.php</em>. You must use this file as a sample to create the actual <em>wp-config.ph</em>p before you can setup your blog. Most users never do this manually because WordPress lets you do it automatically from their installation setup. In that setup, you are adding/modifying key WordPress configurations. So first, we will walk you through what the default setup lets you do.</p>
<p>When you upload WordPress via FTP and access the site, you see a screen like this:</p>
<p><img src="http://www.wpbeginner.com/blogpostsimages/wpconfig/setup1.gif" alt="WordPress Installation Setup" /></p>
<p>The setup basically tells you to use the wp-config-sample.php because it may not work on all hosts. Most of which we tried it with, it works. If you are using one of the popular hosts, then it will work. The next step would be something like this:</p>
<p><img src="http://www.wpbeginner.com/blogpostsimages/wpconfig/setup2.gif" alt="WordPress Installation Setup" /></p>
<p>There you enter some of the key information. The info there lets WordPress connect with a database. Anything you enter in the setup will be added in your wp-config.php as:</p>
<blockquote><p>define(&#39;DB_NAME&#39;, &#39;database-name&#39;);<br />
define(&#39;DB_USER&#39;, &#39;database-username&#39;);<br />
define(&#39;DB_PASSWORD&#39;, &#39;database-password&#39;);<br />
define(&#39;DB_HOST&#39;, &#39;localhost&#39;);</p></blockquote>
<p>By default, the database host is <strong>localhost</strong> because it works with most hosts. But there are hosts that has different configuration, so you will need to modify this if you are using the following hosts:</p>
<ul>
<li><a href="http://www.wpbeginner.com/refer/freedotcom" style="" target="_blank" rel="nofollow" >1and1</a> Hosting — db12345678</li>
<li>DreamHost — mysql.example.com</li>
<li><a href="http://www.wpbeginner.com/refer/godaddy" style="" target="_blank" rel="nofollow" onmouseover="self.status='Go Daddy Domain Registration';return true;" onmouseout="self.status=''">GoDaddy</a> — h41mysql52.secureserver.net</li>
<li>ICDSoft — localhost:/tmp/mysql5.sock</li>
<li>MediaTemple (GS) — internal-db.s44441.gridserver.com</li>
<li>Pair Networks — dbnnnx.pair.com</li>
<li>Yahoo — mysql</li>
</ul>
<p>One of the coolest trick for wp-config.php in <a href="http://www.wpbeginner.com/refer/diggwp">Digging into WordPress eBook</a> was the ability to detect the database host.</p>
<blockquote><p>define(&#39;DB_HOST&#39;, $_ENV{DATABASE_SERVER});</p></blockquote>
<p>Paste the code above, and it will most likely grab the database server. For this, you would have to manually edit the wp-config.php file though.</p>
<h4>Security Keys</h4>
<p>WordPress Security Keys is a set of random variables that improve encryption of information stored in the user’s cookies. Prior to <a href="http://www.wpbeginner.com/news/wordpress-3-0-thelonious-features-video/">WordPress 3.0</a>, you had to install this in your <em>wp-config.php</em> file manually. In WordPress 3.0 if you use the install wizard, then it automatically adds the security keys in your wp-config.php. Also prior to WordPress 3.0, there were only 4 security keys, but with 3.0 there are 8 security keys available.</p>
<p>These can be added in the wp-config.php as so:</p>
<blockquote><p>define(&#39;AUTH_KEY&#39;,         &#39;put your unique phrase here&#39;);<br />
define(&#39;SECURE_AUTH_KEY&#39;,  &#39;put your unique phrase here&#39;);<br />
define(&#39;LOGGED_IN_KEY&#39;,    &#39;put your unique phrase here&#39;);<br />
define(&#39;NONCE_KEY&#39;,        &#39;put your unique phrase here&#39;);<br />
define(&#39;AUTH_SALT&#39;,        &#39;put your unique phrase here&#39;);<br />
define(&#39;SECURE_AUTH_SALT&#39;, &#39;put your unique phrase here&#39;);<br />
define(&#39;LOGGED_IN_SALT&#39;,   &#39;put your unique phrase here&#39;);<br />
define(&#39;NONCE_SALT&#39;,       &#39;put your unique phrase here&#39;);</p></blockquote>
<p>You can grab the unique keys by going to <a href="https://api.wordpress.org/secret-key/1.1/salt/">this page</a>. We did an article on <a href="http://www.wpbeginner.com/beginners-guide/what-why-and-hows-of-wordpress-security-keys/">What, Why, and Hows of Security Keys</a> that might interest you.</p>
<h4>Database Prefix</h4>
<p>When you are installing WordPress using the wizard, one of the options is to select the Table prefix. That is stored in <em>wp-config.php</em> file as:</p>
<blockquote><p>$table_prefix  = &#39;wp_&#39;;</p></blockquote>
<p>We recommend that you use something other than wp_ to add extra work for the hackers. Although if you already have WordPress setup, then don&#8217;t just change the prefix like this. There is a set of <a href="http://wpcanada.ca/2009/11/21/how-to-change-wordpress-table-prefix/" target="_blank" rel="nofollow">steps here</a> that you should take.</p>
<h4>Language Configuration</h4>
<p>By default, English is the localized language of WordPress, but it can be changed to your native language with these:</p>
<blockquote><p>
define(&#39;WPLANG&#39;, &#39;&#39;);<br />
define(&#39;LANGDIR&#39;, &#39;&#39;);</p></blockquote>
<p>The language translation file (.mo) must be placed in the default location which is assumed to be <em>wp-content/languages</em> (first) and then <em>wp-includes/languages</em> (second). As you can see in the function above, you can define your own language directory if you like. To find WordPress in your language, please check out the <a href="http://codex.wordpress.org/WordPress_in_Your_Language" target="_blank" rel="nofollow">official WordPress Codex page</a>.</p>
<h4>Debugging WordPress</h4>
<p>For developers, WordPress has this awesome debugging feature which allows them to find errors, and deprecated functions. By default, this function is set to false, but in the development mode, developers should have it enabled.</p>
<blockquote><p>define(&#8216;WP_DEBUG&#8217;, false); // disable debugging mode by default<br />
define(&#8216;WP_DEBUG&#8217;, true); // enable debugging mode</p></blockquote>
<h4>Blog/Site Address</h4>
<p>In your WordPress Settings, you specify the WordPress address and the site address. Those are added in your database, and every time the developer calls it in the template, it is running a database query. In WordPress 2.2, these two settings were introduced to override the database values without changing them:</p>
<blockquote><p>define(&#39;WP_HOME&#39;, &#39;http://www.wpbeginner.com&#39;);<br />
define(&#39;WP_SITEURL&#39;, &#39;http://www.wpbeginner.com&#39;);</p></blockquote>
<p>By adding these in your wp-config.php, you are reducing the number of database queries thus increasing your site&#8217;s performance.</p>
<h4>Override File Permissions</h4>
<p>You can override file permissions, if your host has restrictive permissions for all user files. Most of you do not need this, but it exists for those who need it.</p>
<blockquote><p>define(&#39;FS_CHMOD_FILE&#39;, 0755);<br />
define(&#39;FS_CHMOD_DIR&#39;, 0644);</p></blockquote>
<h4>Post Revisions</h4>
<p>In the recent versions of WordPress, there is a super awesome feature called Post Revisions. This function auto-saves posts just incase if your browser crash, or something else happen. It also allows users to restore back to previous versions if they don&#8217;t like the changes and so on. While a lot of us love this feature, some of us really hate it with a passion. This function has numerous configuration, so you can make it work just right for you.</p>
<p><strong>The Auto-Save Configuration</strong></p>
<p>By default WordPress saves post every 60 seconds, but if you think that is way too much, then you can modify it to your likings with this configuration:</p>
<blockquote><p>define(&#39;AUTOSAVE_INTERVAL&#39;, 120); // in seconds</p></blockquote>
<p>Some posts have 10s, 20s, or even 100 post revisions depending on the blog owner. If you think that feature annoys you, then you can limit the number of revisions per post.</p>
<blockquote><p>define(&#39;WP_POST_REVISIONS&#39;, 5);</p></blockquote>
<p>You can use any integer you like there.</p>
<p>If none of the settings above satisfies you, then you can simply disable the post revisions feature by adding this function:</p>
<blockquote><p>define(&#39;WP_POST_REVISIONS&#39;, false);</p></blockquote>
<h4>WordPress Trash Feature</h4>
<p>In WordPress 2.9, there was a new &#8220;Trash&#8221; feature added to the core. This feature works just like the recycling bin, so instead of deleting the post permanently, you would send it to the trash. This helped those users who accidently click on Delete button, and it can be any of us. The bad part about this trash feature is that you have to empty the trash regularly. By default the trash empties itself every 30 days. You can modify that by using the following function:</p>
<blockquote><p>define(&#39;EMPTY_TRASH_DAYS&#39;, 7 ); //Integer is the amount of days</p></blockquote>
<p>If you do not like this feature, then you can disable it by adding the function below:</p>
<blockquote><p>define(&#39;EMPTY_TRASH_DAYS&#39;, 0 );</p></blockquote>
<p>But remember, if you keep the value to 0, then WordPress would not ask for confirmation when you click on Delete Permanently. Any accidental click could cost you&#8230;</p>
<h4>FTP/SSH Constants</h4>
<p>By default, WordPress allow you to upgrade plugins, and WordPress core versions from within the backend. There are some hosts that requires an FTP or SSH connection everytime you try to upgrade, or install a new plugin. By using the codes below, you can set the FTP or SSH constants and never have to worry about it again.</p>
<blockquote><p>// forces the filesystem method: &quot;direct&quot;, &quot;ssh&quot;, &quot;ftpext&quot;, or &quot;ftpsockets&quot;<br />
define(&#39;FS_METHOD&#39;, &#39;ftpext&#39;);<br />
// absolute path to root installation directory<br />
define(&#39;FTP_BASE&#39;, &#39;/path/to/wordpress/&#39;);<br />
// absolute path to &quot;wp-content&quot; directory<br />
define(&#39;FTP_CONTENT_DIR&#39;, &#39;/path/to/wordpress/wp-content/&#39;);<br />
// absolute path to &quot;wp-plugins&quot; directory<br />
define(&#39;FTP_PLUGIN_DIR &#39;, &#39;/path/to/wordpress/wp-content/plugins/&#39;);<br />
// absolute path to your SSH public key<br />
define(&#39;FTP_PUBKEY&#39;, &#39;/home/username/.ssh/id_rsa.pub&#39;);<br />
// absolute path to your SSH private key<br />
define(&#39;FTP_PRIVKEY&#39;, &#39;/home/username/.ssh/id_rsa&#39;);<br />
// either your FTP or SSH username<br />
define(&#39;FTP_USER&#39;, &#39;username&#39;);<br />
// password for FTP_USER username<br />
define(&#39;FTP_PASS&#39;, &#39;password&#39;);<br />
// hostname:port combo for your SSH/FTP server<br />
define(&#39;FTP_HOST&#39;, &#39;ftp.example.org:21&#39;); </p></blockquote>
<h4>Auto Database Optimization</h4>
<p>In WordPress 2.9, there was a feature added called Automatic Database Optimization. To enable this feature, you would need to use the following function:</p>
<blockquote><p>define(&#39;WP_ALLOW_REPAIR&#39;, true);</p></blockquote>
<p>Once activated, you can see the settings on this page: <strong>http://www.yoursite.com/wp-admin/maint/repair.php</strong></p>
<p><img src="http://www.wpbeginner.com/wp2-9/dbrepair.gif" alt="WordPress Automatic Database Repair" /></p>
<p>The user does not need to be logged in to access this functionality when this define is set. This is because its main intent is to repair a corrupted database, Users can often not login when the database is corrupt. So once you are done repairing and optimizing your database, make sure to <strong>remove</strong> this from your <em>wp-config.php</em>.</p>
<h4>Increase PHP Memory Limit</h4>
<p>There is a common <a href="http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/">WordPress Memory Exhausted Error</a> that users have seen when activating some plugin. You can increase the PHP Memory Limit through <em>wp-config.php</em> file. Simply paste the code below:</p>
<blockquote><p>define(&#39;WP_MEMORY_LIMIT&#39;, &#39;64M&#39;);</p></blockquote>
<p>Note: This feature may not work with some web hosts, so you would have to ask them (beg them) to increase your PHP Memory limit.</p>
<h4>WordPress Error Log</h4>
<p>For developers, it is useful to have an error log for a site. You can easily create a simple error log for a WordPress powered website by using <em>wp-config.php</em> file. First create a file called &#8220;php_error.log&#8221;, make it server-writable, and place it in the directory of your choice. Then edit the path in the third line of the following code:</p>
<blockquote><p>@ini_set(&#39;log_errors&#39;,&#39;On&#39;);<br />
@ini_set(&#39;display_errors&#39;,&#39;Off&#39;);<br />
@ini_set(&#39;error_log&#39;,&#39;/home/path/domain/logs/php_error.log&#39;);</p></blockquote>
<h4>Move your wp-content Directory</h4>
<p>Starting from WordPress 2.6, you can move your wp-content directory. It helps with site security. You can do move your wp-content directory by adding the following code in your <em>wp-config.php</em> file:</p>
<blockquote><p>define( &#39;WP_CONTENT_DIR&#39;, $_SERVER[&#39;DOCUMENT_ROOT&#39;] . &#39;/blog/wp-content&#39; );<br />
define( &#39;WP_CONTENT_URL&#39;, &#39;http://example/blog/wp-content&#39;);<br />
define( &#39;WP_PLUGIN_DIR&#39;, $_SERVER[&#39;DOCUMENT_ROOT&#39;] . &#39;/blog/wp-content/plugins&#39; );<br />
define( &#39;WP_PLUGIN_URL&#39;, &#39;http://example/blog/wp-content/plugins&#39;);</p></blockquote>
<p>We have the plugin directory defined because some plugins might not work if you do not define it specifically. </p>
<h4>Custom User / UserMeta Tables</h4>
<p>By default, WordPress saves all user data in the tables wp_users and wp_usermeta. By using the function below, you can specify the table where you want your user information stored.</p>
<blockquote><p>define(&#39;CUSTOM_USER_TABLE&#39;, $table_prefix.&#39;my_users&#39;);<br />
define(&#39;CUSTOM_USER_META_TABLE&#39;, $table_prefix.&#39;my_usermeta&#39;);</p></blockquote>
<h4>Enable Multi-Site Network</h4>
<p>In WordPress 3.0, WPMU was merged into WordPress core. To enable the multi-site network functionality, you have to add the following code in your <em>wp-config.php</em> file.</p>
<blockquote><p>define(&#39;WP_ALLOW_MULTISITE&#39;, true);</p></blockquote>
<p>Once you add this code, there will be a new page in your wp-admin called &#8220;Network&#8221; located in Tools &raquo; Network.</p>
<p>You will have to follow the directions on that page to continue the setup of the MU Network.</p>
<h4>Securing Your WP-Config File</h4>
<p>As you can see, this file is SUPER IMPORTANT therefore it needs extra security. By default it is located in the root WordPress folder, but you can move it. It can be moved outside your public_html directory, so users cannot access it. WordPress knows by default to look in other directories, if the files is not found in the WordPress root folder. You can also use .htaccess file to limit access to this file.</p>
<p>Add the following code:</p>
<blockquote><p># protect wpconfig.php<br />
&lt;files wp-config.php&gt;<br />
order allow,deny<br />
deny from all<br />
&lt;/files&gt;</p></blockquote>
<p>If you have other tips that we can add, surely let us know and we will add it in the article.</p>
<h4>Sources</h4>
<p><a href="http://codex.wordpress.org/Editing_wp-config.php" target="_blank" rel="nofollow">WordPress Codex</a><br />
<a href="http://www.wpbeginner.com/refer/diggwp" target="_blank" rel="nofollow">Digging into WordPress</a></p>
<p><a href="http://www.wpbeginner.com/wp-tutorials/useful-wordpress-configuration-tricks-that-you-may-not-know/">Useful WordPress Configuration Tricks That You May Not Know</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/beginners-guide/what-why-and-hows-of-wordpress-security-keys/' rel='bookmark' title='Permanent Link: What, Why, and Hows of WordPress Security Keys'>What, Why, and Hows of WordPress Security Keys</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/how-to-disable-post-revisions-in-wordpress-and-reduce-database-size/' rel='bookmark' title='Permanent Link: How to Disable Post Revisions in WordPress and Reduce Database Size'>How to Disable Post Revisions in WordPress and Reduce Database Size</a></li>
<li><a href='http://www.wpbeginner.com/wp-tutorials/18-useful-tricks-to-speed-up-wordpress-boost-performance/' rel='bookmark' title='Permanent Link: 18 Useful Tricks To Speed Up WordPress &amp; Boost Performance'>18 Useful Tricks To Speed Up WordPress &amp; Boost Performance</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Xa6j0BnPE7A:eGOkiOmJAZI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Xa6j0BnPE7A:eGOkiOmJAZI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=Xa6j0BnPE7A:eGOkiOmJAZI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Xa6j0BnPE7A:eGOkiOmJAZI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Xa6j0BnPE7A:eGOkiOmJAZI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Xa6j0BnPE7A:eGOkiOmJAZI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=Xa6j0BnPE7A:eGOkiOmJAZI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Xa6j0BnPE7A:eGOkiOmJAZI:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/Xa6j0BnPE7A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/useful-wordpress-configuration-tricks-that-you-may-not-know/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/wp-tutorials/useful-wordpress-configuration-tricks-that-you-may-not-know/</feedburner:origLink></item>
		<item>
		<title>WPBeginner is attending Blog World Expo 2010</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/5CUV4Ikvzf8/</link>
		<comments>http://www.wpbeginner.com/events/wpbeginner-is-attending-blog-world-expo-2010/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 15:46:32 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[blog world coupons]]></category>
		<category><![CDATA[blog world expo]]></category>
		<category><![CDATA[blog world expo 2010]]></category>
		<category><![CDATA[blog world expo coupons]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=1937</guid>
		<description><![CDATA[WPBeginner staff, Syed Balkhi and Amanda Roberts will be attending World's Largest Blogging conference known as the <a href="http://www.wpbeginner.com/refer/bwe" target="_blank" rel="nofollow">Blog World Expo</a>. This event is being held at Mandalay Bay Convention Center in Las Vegas, Nevada. <p><a href="http://www.wpbeginner.com/events/wpbeginner-is-attending-blog-world-expo-2010/">WPBeginner is attending Blog World Expo 2010</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>



Related posts:<ol><li><a href='http://www.wpbeginner.com/events/we-will-be-attending-wordcamp-raleigh/' rel='bookmark' title='Permanent Link: We will be attending WordCamp Raleigh'>We will be attending WordCamp Raleigh</a></li>
<li><a href='http://www.wpbeginner.com/events/wordcamp-raleigh-2010-overview/' rel='bookmark' title='Permanent Link: WordCamp Raleigh 2010 (Overview)'>WordCamp Raleigh 2010 (Overview)</a></li>
<li><a href='http://www.wpbeginner.com/beginners-guide/publishing-your-blog-to-the-world/' rel='bookmark' title='Permanent Link: Publishing Your Blog to the World'>Publishing Your Blog to the World</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>WPBeginner staff, Syed Balkhi and Amanda Roberts will be attending World&#8217;s Largest Blogging conference known as the <a href="http://www.wpbeginner.com/refer/bwe" target="_blank" rel="nofollow">Blog World Expo</a>. This event is being held at Mandalay Bay Convention Center in Las Vegas, Nevada. This event will help you learn about Content Creation, Distribution and Monetization strategies, step-by-step techniques and bleeding-edge tools from the most successful Bloggers, Podcasters, Social Media Pro’s, Internet TV and Radio Content Generators and New Media Marketing Pro&#8217;s. Even though we are not one of the Media Partners for <a href="http://www.wpbeginner.com/refer/bwe" style="" target="_blank" rel="nofollow" >Blog World Expo</a>, we will do our best to take good notes and keep you guys updated with the quality information that we learn.</p>
<p><a href="http://www.wpbeginner.com/refer/bwe" style="" target="_blank" rel="nofollow" >Blog World Expo</a> is not just about learning from the pros. One of the best part about this event is the NETWORKING. You get to network with some of the top bloggers in the industry and many other bloggers that you can potentially partner up with. Having a face to face networking session helps you build a good relationship with bloggers in your industry. You can learn tips, and tricks from other bloggers that you will never see on the web. These are just few of the best parts about <a href="http://www.wpbeginner.com/refer/bwe" style="" target="_blank" rel="nofollow" >Blog World Expo</a>.</p>
<p>The event is being held in Vegas, so you cannot be bored. There is a lot to do. This is going to be a great trip, and we are very excited about it. If you are going to attend then make sure to meetup with us. We are getting a Full Access Pass, and we will be staying a day extra. For those of you who are not going, you should seriously consider attending this event.</p>
<p>If you register before July 15th, you can save almost 50% off the original ticket price. To be exact, you will save $595 on the full access pass original price. We also have a coupon for the early bird users to make it even sweeter deal. Not only that you are getting the Early Bird Discount, if you use the coupon <strong><a href="http://www.wpbeginner.com/refer/bwe" target="_blank" rel="nofollow">EBIRD</a></strong> then you will get additional 20% off. Don&#8217;t hesitate and get this deal RIGHT NOW.</p>
<p>This trip would not be possible for us if it wasn&#8217;t for our AWESOME sponsors. Below we will list all the companies that are sponsoring our trip. If your company is interested in sponsoring us, then please contact us ASAP because we have other WPBeginner members who are eager to attend.</p>
<h4>Sponsors</h4>
<p><a href="http://www.buysellads.com" target="_blank"><img src="http://www.wpbeginner.com/blogpostsimages/events/bsa.gif" alt="BuySellAds" /></a></p>
<p><a href="http://www.buysellads.com" target="_blank">BuySellAds</a></p>
<p>BuySellAds is a huge marketplace to buy/sell advertising spots on your site. Over 750 successful bloggers use them to power their online ad sales. WPBeginner is also using BSA to maintain our ads. It is also a great place for advertisers. Over 1,000 quality advertisers use BSA to target the audiences that are right for their brand. If you are interested, apply to be in their marketplace now.</p>
<p><a href="http://www.avivadirectory.com" target="_blank"><img src="http://www.wpbeginner.com/blogpostsimages/events/aviva.gif" alt="Aviva Web Directory" /></a></p>
<p><a href="http://www.avivadirectory.com" target="_blank">Aviva Web Directory</a></p>
<p>Aviva Web Directory is one of the most prestigious web directories on the world wide web. It has been on the web since 2005 and has thousands of websites listed in it. Jeff was kind enough to be one of our daily sponsors. He is also giving $25 off on any listing price if you use the coupon &#8220;wpbeginner&#8221;. Get your site listed in their for SEO benefits.</p>
<p><a href="http://www.wpbeginner.com/refer/headwaythemes" target="_blank"><img src="http://www.wpbeginner.com/blogpostsimages/events/headway.gif" alt="Headway Themes" /></a></p>
<p><a href="http://www.wpbeginner.com/refer/headwaythemes" target="_blank">Headway Themes</a></p>
<p><a href="http://www.wpbeginner.com/refer/headwaythemes" style="" target="_blank" rel="nofollow" >Headway</a> is much more than a WordPress theme. It is a system for do-it-yourself-ers and developers to create sites with simple drag and drop. You can create your very own custom WordPress theme in just a few minutes by simply clicking, dragging, and dropping. It is one of the most popular framework for WordPress themes. Grant was kind enough to give WPBeginner users a 20% off coupon. Simply use the coupon &#8220;<a href="http://www.wpbeginner.com/refer/headwaythemes" target="_blank">wpbeginner</a>&#8220;.</p>
<p><a href="http://www.wpbeginner.com/refer/studiopress" target="_blank"><img src="http://www.wpbeginner.com/blogpostsimages/events/studiopress.gif" alt="StudioPress Themes" /></a></p>
<p><a href="http://www.wpbeginner.com/refer/studiopress" target="_blank">StudioPress WordPress Themes</a></p>
<p>Formerly known as the famous Revolution Themes, <a href="http://www.wpbeginner.com/refer/studiopress" style="" target="_blank" rel="nofollow" >StudioPress</a> has always strived for excellence and produced high quality themes. It is one of the most popular theme provider.</p>
<p>We hope to see you at the event. Stay updated with the blog as we will have more posts about the Blog World Expo in the near future.</p>
<p><a href="http://www.wpbeginner.com/events/wpbeginner-is-attending-blog-world-expo-2010/">WPBeginner is attending Blog World Expo 2010</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>


<p>Related posts:<ol><li><a href='http://www.wpbeginner.com/events/we-will-be-attending-wordcamp-raleigh/' rel='bookmark' title='Permanent Link: We will be attending WordCamp Raleigh'>We will be attending WordCamp Raleigh</a></li>
<li><a href='http://www.wpbeginner.com/events/wordcamp-raleigh-2010-overview/' rel='bookmark' title='Permanent Link: WordCamp Raleigh 2010 (Overview)'>WordCamp Raleigh 2010 (Overview)</a></li>
<li><a href='http://www.wpbeginner.com/beginners-guide/publishing-your-blog-to-the-world/' rel='bookmark' title='Permanent Link: Publishing Your Blog to the World'>Publishing Your Blog to the World</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=5CUV4Ikvzf8:fzmK0hEiFFo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=5CUV4Ikvzf8:fzmK0hEiFFo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=5CUV4Ikvzf8:fzmK0hEiFFo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=5CUV4Ikvzf8:fzmK0hEiFFo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=5CUV4Ikvzf8:fzmK0hEiFFo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=5CUV4Ikvzf8:fzmK0hEiFFo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=5CUV4Ikvzf8:fzmK0hEiFFo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=5CUV4Ikvzf8:fzmK0hEiFFo:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/wpbeginner/~4/5CUV4Ikvzf8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/events/wpbeginner-is-attending-blog-world-expo-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/events/wpbeginner-is-attending-blog-world-expo-2010/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 3.337 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-07-29 08:13:33 -->
