<?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.wpbeginner.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>WPBeginner</title>
	
	<link>http://www.wpbeginner.com</link>
	<description>Beginner's Guide for WordPress</description>
	<lastBuildDate>Tue, 18 Jun 2013 12:25:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.wpbeginner.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>How To Customize Blockquotes Style in WordPress Themes</title>
		<link>http://feeds.wpbeginner.com/~r/wpbeginner/~3/cqc9dqc4z6s/</link>
		<comments>http://www.wpbeginner.com/wp-themes/how-to-customize-blockquotes-style-in-wordpress-themes/#comments</comments>
		<pubDate>Tue, 18 Jun 2013 12:25:23 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[blockquotes]]></category>
		<category><![CDATA[quotes]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=10606</guid>
		<description><![CDATA[<p>Quotes often are the most memorable part of your article. They are also the most shared part of any post or presentation. This is why newspapers and main stream media sites customize their blockquote style to make it stand out. In this article, we will&#8230;&#160;<strong><a href="http://www.wpbeginner.com/wp-themes/how-to-customize-blockquotes-style-in-wordpress-themes/">Read More &#187;</a></strong></p><p>To leave a comment please visit <a href="http://www.wpbeginner.com/wp-themes/how-to-customize-blockquotes-style-in-wordpress-themes/">How To Customize Blockquotes Style in WordPress Themes</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Quotes often are the most memorable part of your article. They are also the most shared part of any post or presentation. This is why newspapers and main stream media sites customize their blockquote style to make it stand out. In this article, we will show you how to customize blockquotes style in WordPress along with showing you 9 beautiful examples of customized blockquotes style.</p>
<p>WordPress allows you to add blockquotes within your posts and pages by using the toolbar area in your write section. </p>
<p><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/03/wpblockquote.jpg" alt="Add Blockquote in WordPress" width="439" height="84" class="alignnone size-full wp-image-14455" /></p>
<p>This will add a little HTML in your post that we can use to customize the styling. Note: we are using the text mode in WordPress post editor. Below is an example of the HTML that you should see.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;blockquote&gt;Ea possunt paria non esse. Pudebit te, inquam, illius tabulae, quam Cleanthes sane commode verbis depingere solebat. Urgent tamen et nihil remittunt. An vero displicuit ea, quae tributa est animi virtutibus tanta praestantia? Sint ista Graecorum; Cur igitur, cum de re conveniat, non malumus usitate loqui? Huius ego nunc auctoritatem sequens idem faciam.
&lt;cite&gt;Wise Man&lt;/cite&gt;&lt;/blockquote&gt;
</pre>
<p>In order to customize the blockquotes style in your WordPress theme, we would need to modify the style.css file of your theme. You can do this by either going to <strong>Appearance &raquo; Editor</strong> in your WordPress admin or edit the files via FTP. </p>
<p>Next, you would need to use one of the styles suggested below and override your blockquote styles. If none exist, then simply add these. You are also more than welcome to combine the two styles and customize to your heart&#8217;s desire.</p>
<h4>1. Classic CSS Blockquote</h4>
<p>Usually people use CSS <code>background-image</code> to add large quotation marks in blockquote. In this example we have used CSS to add large quotation marks. </p>
<p><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/03/classic-css-blockquote.png" alt="Classic CSS only blockquote example" width="520" height="260" class="alignnone size-full wp-image-11620" title="Classic CSS only blockquote example" /></p>
<pre class="brush: css; title: ; notranslate">
blockquote {
	font-family: Georgia, serif;
	font-size: 18px;
	font-style: italic;
	width: 450px;
	margin: 0.25em 0;
	padding: 0.25em 40px;
	line-height: 1.45;
	position: relative;
	color: #383838;
	background:#ececec;
}

blockquote:before {
	display: block;
	content: &quot;\201C&quot;;
	font-size: 80px;
	position: absolute;
	left: -10px;
	top: -10px;
	color: #7a7a7a;
}

blockquote cite {
	color: #999999;
	font-size: 14px;
	display: block;
	margin-top: 5px;
}
 
blockquote cite:before {
	content: &quot;\2014 \2009&quot;;
}
</pre>
<h4>2. Classic Blockquote with Image</h2>
<p>In this example we have used a background image for quotation marks. </p>
<p><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/03/classic-image-quotes.png" alt="Classic Blockquote with Image for Quotation Marks" width="520" height="260" class="alignnone size-full wp-image-11606" title="Classic Blockquote with Image for Quotation Marks" /></p>
<pre class="brush: css; title: ; notranslate">
blockquote {
	font: 16px italic Georgia, serif;
	width:450px;
	padding-left: 70px;
	padding-top: 18px;
	padding-bottom: 18px;
	padding-right: 10px;
	background-color: #dadada;
	border-top: 1px solid #ccc;
	border-bottom: 3px solid #ccc;
	margin: 5px;
	background-image: url(http://example.com/wp-content/themes/your-theme/images/gray-georgia.png);
	background-position: middle left;
	background-repeat: no-repeat;
	text-indent: 23px;
} 

blockquote cite {
	color: #a1a1a1;
	font-size: 14px;
	display: block;
	margin-top: 5px;
}
 
blockquote cite:before {
	content: &quot;\2014 \2009&quot;;
}
</pre>
<h4>3. Simple Blockquote</h4>
<p>In this example we have added background color and dashed left border instead of blockquotes. Feel free to play with the colors. </p>
<p><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/03/simple-css-blockquote-example.jpg" alt="Simple CSS blockquote example" width="520" height="237" class="alignnone size-full wp-image-11573" title="Simple CSS blockquote example" /></p>
<pre class="brush: css; title: ; notranslate">
blockquote {
font-family: Georgia, serif;
font-size: 16px;
font-style: italic;
width: 500px;
margin: 0.25em 0;
padding: 0.25em 40px;
line-height: 1.45;
position: relative;
color: #383838;
border-left:3px dashed #c1c1c1;
background:#eee;
}

blockquote cite {
color: #999999;
font-size: 14px;
display: block;
margin-top: 5px;
}
 
blockquote cite:before {
content: &quot;\2014 \2009&quot;;
}
</pre>
<h4>4. White Blue and Orange Blockquote</h4>
<p>Blockquotes can be made to standout and they can be just as colorful as you want them to be. </p>
<p><img src="http://cdn2.wpbeginner.com/wp-content/uploads/2013/03/orange-blue-white.jpg" alt="Blue background and white font blockquote example" width="520" height="254" class="alignnone size-full wp-image-11604" title="Blue background and white font blockquote example" /></p>
<pre class="brush: css; title: ; notranslate">

blockquote {
font-family: Georgia, serif;
font-size: 16px;
font-style: italic;
width: 450px;
margin: 0.25em 0;
padding: 0.25em 40px;
line-height: 1.45;
position: relative;
color: #FFF;
border-left:5px solid #FF7F00;
background:#4b8baf;
}

blockquote cite {
color: #efefef;
font-size: 14px;
display: block;
margin-top: 5px;
}
 
blockquote cite:before {
content: &quot;\2014 \2009&quot;;
}
</pre>
<h4>5. Using Google Web Fonts for Blockquotes in CSS</h4>
<p>In this blockquote CSS example we have used Droid Serif font from Google web fonts library. </p>
<p><img src="http://cdn4.wpbeginner.com/wp-content/uploads/2013/03/google-font-blockquote.png" alt="Importing Google Web font in CSS for Blockquote" width="520" height="260" class="alignnone size-full wp-image-11609" title="Importing Google Web font in CSS for Blockquote" /></p>
<pre class="brush: css; title: ; notranslate">
blockquote {
@import url(http://fonts.googleapis.com/css?family=Droid+Serif:400italic);
font-family: 'Droid Serif', serif;
font-size:16px;
font-style:italic;
width:450px;
background-color:#fbf6f0;
border-left:3px dashed #d5bc8c;
border-right:3px dashed #d5bc8c;
text-align:center;
} 
blockquote cite {
color: #a1a1a1;
font-size: 14px;
display: block;
margin-top: 5px;
}
 
blockquote cite:before {
content: &quot;\2014 \2009&quot;;
}
</pre>
<h4>6. Round Corner Blockquote</h4>
<p>In this example we have blockquote with rounded corners and we have used drop shadow for borders. </p>
<p><img src="http://cdn2.wpbeginner.com/wp-content/uploads/2013/03/round-corner-blockquote.png" alt="Round corners blockquote" width="520" height="260" class="alignnone size-full wp-image-11612" title="Round corners blockquote" /></p>
<pre class="brush: css; title: ; notranslate">

blockquote {
width: 450px;
background-color: #f9f9f9;
border: 1px solid #ccc;
border-radius: 6px;
box-shadow: 1px 1px 1px #ccc;
font-style: italic;
}
blockquote cite:before {
content: &quot;\2014 \2009&quot;;
}

</pre>
<h4>7. Using Gradient as Background for Blockquote</h4>
<p>In this CSS blockquote example, we have used CSS3 gradient to enhance background of blockquote. CSS gradients are tricky, because of cross-browser compatibility. We recommend using colorlabs, CSS gradient generator. </p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2013/03/css-gradient-blockquote.png" alt="Adding CSS Gradient as background for Blockquote" width="520" height="260" class="alignnone size-full wp-image-11614" title="Adding CSS Gradient as background for Blockquote" /></p>
<pre class="brush: css; title: ; notranslate">
blockquote {
width: 450px;
color:#FFF;
background: #7d7e7d; /* Old browsers */
background: -moz-linear-gradient(top,  #7d7e7d 0%, #0e0e0e 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7d7e7d), color-stop(100%,#0e0e0e)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #7d7e7d 0%,#0e0e0e 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #7d7e7d 0%,#0e0e0e 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #7d7e7d 0%,#0e0e0e 100%); /* IE10+ */
background: linear-gradient(to bottom,  #7d7e7d 0%,#0e0e0e 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=0 ); /* IE6-9 */
border: 1px solid #ccc;
border-radius: 6px;
box-shadow: 1px 1px 1px #ccc;
font-style: italic;
}
blockquote cite:before {
content: &quot;\2014 \2009&quot;;
}

</pre>
<h4>8. Blockquote with Background Pattern</h4>
<p>In this example we have used a background image as pattern for blockquote. </p>
<p><img src="http://cdn2.wpbeginner.com/wp-content/uploads/2013/03/background-blockquote.png" alt="CSS blockquote with background image pattern" width="520" height="260" class="alignnone size-full wp-image-11616" title="CSS blockquote with background image pattern" /></p>
<pre class="brush: css; title: ; notranslate">

blockquote {
width: 450px;
background-image:url('http://example.com/wp-content/themes/your-theme/images/lined_paper.png');
border: 1px solid #ccc;
box-shadow: 1px 1px 1px #ccc;
font-style: italic;
}
blockquote cite:before {
content: &quot;\2014 \2009&quot;;
}
</pre>
<h4>9. Using Multiple Images in Blockquote Background</h4>
<p>You can use multiple images in blockquote background using css. In this example we have used <code>blockquote:before</code> pseudo element to add another background image to blockquote. </p>
<p><img src="http://cdn2.wpbeginner.com/wp-content/uploads/2013/03/multiple-background-blockquote.png" alt="Adding multiple background images in blockquote using CSS" width="520" height="260" class="alignnone size-full wp-image-11624" title="Adding multiple background images in blockquote using CSS" /></p>
<pre class="brush: css; title: ; notranslate">

blockquote {
width: 450px;
background-image:url('http://example.com/wp-content/themes/your-theme/images/lined_paper.png');
border: 1px solid #ccc;
box-shadow: 1px 1px 1px #ccc;
font-style: italic;
}
blockquote:before{
position:absolute;
margin-top:-20px;
margin-left:-20px;
content:url('http://example.com/wp-content/themes/your-theme/images/pin.png');
}
blockquote cite:before {
content: &quot;\2014 \2009&quot;;
}
</pre>
<p>We hope that you found this article helpful in learning how to customize blockquotes style in WordPress. If you have any questions or suggestions, then please feel free to leave a comment below.</p>
<p>To leave a comment please visit <a href="http://www.wpbeginner.com/wp-themes/how-to-customize-blockquotes-style-in-wordpress-themes/">How To Customize Blockquotes Style in WordPress Themes</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p><div class="feedflare">
<a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=cqc9dqc4z6s:0HrASy7GxyA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=cqc9dqc4z6s:0HrASy7GxyA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=cqc9dqc4z6s:0HrASy7GxyA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=cqc9dqc4z6s:0HrASy7GxyA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=cqc9dqc4z6s:0HrASy7GxyA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=cqc9dqc4z6s:0HrASy7GxyA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=cqc9dqc4z6s:0HrASy7GxyA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=cqc9dqc4z6s:0HrASy7GxyA: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/cqc9dqc4z6s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-themes/how-to-customize-blockquotes-style-in-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/wp-themes/how-to-customize-blockquotes-style-in-wordpress-themes/</feedburner:origLink></item>
		<item>
		<title>How to Add Featured Images or Post Thumbnails in WordPress</title>
		<link>http://feeds.wpbeginner.com/~r/wpbeginner/~3/lIrSf58ACF4/</link>
		<comments>http://www.wpbeginner.com/beginners-guide/how-to-add-featured-image-or-post-thumbnails-in-wordpress/#comments</comments>
		<pubDate>Mon, 17 Jun 2013 12:00:25 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Beginners Guide]]></category>
		<category><![CDATA[additional image sizes]]></category>
		<category><![CDATA[featured images]]></category>
		<category><![CDATA[post thumbnails]]></category>
		<category><![CDATA[regenerate thumbnails]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=13823</guid>
		<description><![CDATA[<p>Featured images also known as post thumbnails are a popular feature in WordPress themes. Today most WordPress photography themes, restaurant themes, church themes, and other types of themes have built-in support for post thumbnails. In this article we will show you how to add featured&#8230;&#160;<strong><a href="http://www.wpbeginner.com/beginners-guide/how-to-add-featured-image-or-post-thumbnails-in-wordpress/">Read More &#187;</a></strong></p><p>To leave a comment please visit <a href="http://www.wpbeginner.com/beginners-guide/how-to-add-featured-image-or-post-thumbnails-in-wordpress/">How to Add Featured Images or Post Thumbnails in WordPress</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Featured images also known as post thumbnails are a popular feature in WordPress themes. Today most <a href="http://www.wpbeginner.com/showcase/best-wordpress-photography-themes-of-2012/" title="Best WordPress Photography Themes" target="_blank">WordPress photography themes</a>, <a href="http://www.wpbeginner.com/showcase/best-wordpress-restaurant-themes-of-2013/" title="WordPress Restaurant Themes" target="_blank">restaurant themes</a>, <a href="http://www.wpbeginner.com/showcase/best-wordpress-themes-for-churches-2013/" title="Best WordPress Church Themes" target="_blank">church themes</a>, and other types of themes have built-in support for post thumbnails. In this article we will show you how to add featured images or post thumbnails in WordPress. </p>
<p>You might be thinking why are we using featured image and post thumbnail interchangeably. Well, when this feature was first introduced in <a href="http://www.wpbeginner.com/news/most-notable-features-in-wordpress-2-9/" title="Noteable features in WordPress 2.9 " target="_blank">WordPress 2.9</a>, it was called post thumbnails. However, in the next version it was renamed to featured image.</p>
<h4>Beginners Guide to Featured Images in WordPress</h4>
<p>Featured Images or Post Thumbnails is a theme feature. Most themes such as <a href="http://www.wpbeginner.com/refer/studiopress-genesis/"rel="nofollow" target="_blank" >Genesis</a> and others support featured images by default. An easy way to figure out whether your theme supports featured images is by going to the post editor. Simply create a new post and scroll down a little to see if there is a meta box called featured images on the right hand side of the screen.</p>
<p><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/05/featured-image-wordpress.png" alt="Featured Image meta box in WordPress" width="520" height="320" class="alignnone size-full wp-image-13843" title="Featured Image meta box in WordPress" /></p>
<h4>Adding Post Thumbnail or Featured Image in WordPress</h4>
<p>To add a featured image in a WordPress post, simply click on &#8220;Set Featured Image&#8221; link inside the featured image meta box shown in the screenshot above. This will open the WordPress Media Uploader. You can use that to upload an image from your computer or use an existing image from your media library. Once you select the image, simply click on Set Featured Image button. </p>
<p><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/05/set-featured-image.png" alt="Setting a featured image in WordPress" width="520" height="320" class="alignnone size-full wp-image-13827" title="Setting a featured image in WordPress" /></p>
<p>The image will appear in the Featured Image meta box, like this:</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2013/05/setting-featured-image.png" alt="A featured image added in a WordPress post" width="520" height="320" class="alignnone size-full wp-image-13845" title="A featured image added in a WordPress post" /></p>
<p>It is important to note that the image may appear a little bit differently in your theme. It all depends on how your theme handles featured images. Some magazine themes use smaller thumbnails along side post summaries on the main page, and a larger version on the single post view. Depending on settings defined by your theme developer, your featured image will automatically appear with your posts. However, if you want to change the way your theme handles featured images and post thumbnails then continue reading. </p>
<p><strong>Note:</strong> Everything below this will require coding knowledge.</p>
<h4>Theme Developers Guide to Featured Image and Post Thumbnails in WordPress</h4>
<p>Even though featured image is a popular feature supported by a large number of themes, it is still possible that you might be using a theme that does not support featured images. In that case, you can add featured image support to your theme. If you are comfortable editing theme files and know your way around a little CSS, then you can do it yourself. </p>
<p>To add featured image support in a WordPress theme, you need to add this line of code in your theme&#8217;s functions.php file: </p>
<pre class="brush: php; title: ; notranslate">
add_theme_support( 'post-thumbnails' );
</pre>
<p>This code will enable featured image support for posts and pages. You can now go to posts or pages, and you will see featured image option enabled. However, when you set a featured image it will not automatically display in your WordPress theme. To display featured images in your theme, you need to edit your templates and add this line of code where you want to display the featured image: </p>
<pre class="brush: php; title: ; notranslate">
&lt;?php the_post_thumbnail(); ?&gt;
</pre>
<p>The files you add the above code in will vary based on your theme. You will want to add the code inside your post loop. </p>
<p>The above code is the basic function that you need to add featured image support and display featured images in your theme. To set image size for featured images you upload, you need to add this line of code to your <code>functions.php</code> file. </p>
<pre class="brush: php; title: ; notranslate">
set_post_thumbnail_size( 50, 50);
</pre>
<p>The parameters for set_post_thumbnail_size are in this order: width, height.</p>
<p>You can also set additional image sizes to use with the_post_thumbnail() function. For example:</p>
<pre class="brush: php; title: ; notranslate">
// Image size for single posts
add_image_size( 'single-post-thumbnail', 590, 180 );
</pre>
<p>In this example we have added a new image size called <strong>single-post-thumbnail</strong> with 590px with and 180px height. To use this image size in our theme, we will still need to add it in the appropriate theme file. Checkout our guide on adding <a href="http://www.wpbeginner.com/wp-tutorials/how-to-create-additional-image-sizes-in-wordpress/" title="How to Create Additional Image Sizes in WordPress" target="_blank">additional image sizes</a> in WordPress for more details.</p>
<p>If you have previously uploaded featured images, but they are still appearing in some other size, then you need to <a href="http://www.wpbeginner.com/plugins/regenerate-thumbnails-new-image-sizes-wordpress/" title="How to Regenerate Thumbnails and New Image Sizes in WordPress" target="_blank">regenerate thumbnails and image sizes</a> for older posts.</p>
<p>Below is an example of the featured image function with a specific image size.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php the_post_thumbnail( 'single-post-thumbnail' ); ?&gt;
</pre>
<p>This is broken down version of the full functionality. You can further extend the functionality of featured images. For example, you can set a <a href="http://www.wpbeginner.com/wp-themes/how-to-set-a-default-fallback-image-for-wordpress-post-thumbnails/" title="How to set a default fallback image for post thumbnails in WordPress" target="_blank">default fallback image for post thumbnails</a>, display <a href="http://www.wpbeginner.com/wp-tutorials/how-to-display-wordpress-post-thumbnails-with-captions/" title="How to Display Post Thumbnails or Featured Images with Captions" target="_blank">featured images with captions</a>, or even add <a href="http://www.wpbeginner.com/plugins/how-to-add-multiple-post-thumbnails-featured-images-in-wordpress/" title="How to Add Multiple Featured Images or Post Thumbnails in WordPress" target="_blank">multiple post thumbnails or featured images</a>. </p>
<p>We hope that this article helped you learn how to add featured images or post thumbnails in WordPress. If you have any questions or suggestions, then please let us know by leaving a comment below.</p>
<p>To leave a comment please visit <a href="http://www.wpbeginner.com/beginners-guide/how-to-add-featured-image-or-post-thumbnails-in-wordpress/">How to Add Featured Images or Post Thumbnails in WordPress</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p><div class="feedflare">
<a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=lIrSf58ACF4:fFF8B-gcqAw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=lIrSf58ACF4:fFF8B-gcqAw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=lIrSf58ACF4:fFF8B-gcqAw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=lIrSf58ACF4:fFF8B-gcqAw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=lIrSf58ACF4:fFF8B-gcqAw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=lIrSf58ACF4:fFF8B-gcqAw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=lIrSf58ACF4:fFF8B-gcqAw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=lIrSf58ACF4:fFF8B-gcqAw: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/lIrSf58ACF4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/beginners-guide/how-to-add-featured-image-or-post-thumbnails-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/beginners-guide/how-to-add-featured-image-or-post-thumbnails-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>How to Add Titles in WordPress Menu Without Linking to a Page</title>
		<link>http://feeds.wpbeginner.com/~r/wpbeginner/~3/Pct3Z1u8g64/</link>
		<comments>http://www.wpbeginner.com/beginners-guide/how-to-add-titles-in-wordpress-menu-without-linking-to-a-page/#comments</comments>
		<pubDate>Fri, 14 Jun 2013 12:00:41 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Beginners Guide]]></category>
		<category><![CDATA[menus]]></category>
		<category><![CDATA[wordpress menus]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=14254</guid>
		<description><![CDATA[<p>Recently one of our users asked us if there was a way to add titles in WordPress menu without adding a link. By default, WordPress menu requires each menu item linked to a page or custom link. However when creating a drop down menu, you&#8230;&#160;<strong><a href="http://www.wpbeginner.com/beginners-guide/how-to-add-titles-in-wordpress-menu-without-linking-to-a-page/">Read More &#187;</a></strong></p><p>To leave a comment please visit <a href="http://www.wpbeginner.com/beginners-guide/how-to-add-titles-in-wordpress-menu-without-linking-to-a-page/">How to Add Titles in WordPress Menu Without Linking to a Page</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Recently one of our users asked us if there was a way to add titles in WordPress menu without adding a link. By default, WordPress menu requires each menu item linked to a page or custom link. However when creating a drop down menu, you may you want to add a title for sub-menus without linking it to a specific page. For example, you can have a categories dropdown where you want to have the text categories be the title of the menu. In this article, we will show you how to add titles in WordPress menu without linking to a page. </p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2013/06/menu-without-link-e1371182204750.png" alt="Creating a menu item without link" width="519" height="184" class="alignnone size-full wp-image-14414" title="Creating a menu item without link" /></p>
<p>First thing you need to do is add a new menu item in your menu. You can do that by going to <strong>Appearance &raquo; Menus</strong>. You want to add a custom link so give it the label you want. In the URL field, enter the <strong>#</strong> sign. Once done, click on the <em>Add to Menu</em> button. Save your menu once this custom link is added to the menu. </p>
<p><img src="http://cdn4.wpbeginner.com/wp-content/uploads/2013/06/customlink-withouturl.png" alt="Adding a custom link to the menu without URL" width="520" height="320" class="alignnone size-full wp-image-14415" title="Adding a custom link to the menu without URL" /></p>
<p>Now click on the drop down arrow next to this custom link to edit this menu item. Go ahead and remove the pound sign from the URL field and save your menu. If you go to your live website, then you will see a menu item without link. You can add sub menus to this menu item and link them to any page or custom link you want. </p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2013/06/arranging-menu.png" alt="Removing # sign and creating a menu without any link" width="520" height="320" class="alignnone size-full wp-image-14416" title="Removing # sign and creating a menu without any link" /></p>
<p>We hope that this article helped you add titles in WordPress menu without linking to a page or any URL. If you have any feedback or questions, then please leave a comment below. </p>
<p>To leave a comment please visit <a href="http://www.wpbeginner.com/beginners-guide/how-to-add-titles-in-wordpress-menu-without-linking-to-a-page/">How to Add Titles in WordPress Menu Without Linking to a Page</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p><div class="feedflare">
<a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=Pct3Z1u8g64:vYLhfZL9Sv8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=Pct3Z1u8g64:vYLhfZL9Sv8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=Pct3Z1u8g64:vYLhfZL9Sv8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=Pct3Z1u8g64:vYLhfZL9Sv8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=Pct3Z1u8g64:vYLhfZL9Sv8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=Pct3Z1u8g64:vYLhfZL9Sv8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=Pct3Z1u8g64:vYLhfZL9Sv8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=Pct3Z1u8g64:vYLhfZL9Sv8: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/Pct3Z1u8g64" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/beginners-guide/how-to-add-titles-in-wordpress-menu-without-linking-to-a-page/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/beginners-guide/how-to-add-titles-in-wordpress-menu-without-linking-to-a-page/</feedburner:origLink></item>
		<item>
		<title>How to Add Google+ Comments in WordPress</title>
		<link>http://feeds.wpbeginner.com/~r/wpbeginner/~3/oYf_q5yj9Qw/</link>
		<comments>http://www.wpbeginner.com/plugins/how-to-add-google-comments-in-wordpress/#comments</comments>
		<pubDate>Thu, 13 Jun 2013 12:07:42 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[add google+ comments in wordpress]]></category>
		<category><![CDATA[google plus comments]]></category>
		<category><![CDATA[google+]]></category>
		<category><![CDATA[gplus comments]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=13292</guid>
		<description><![CDATA[<p>Not too long ago Google announced Google+ comments for their blogging platform, Blogger. Recently, one of our readers asked us if there was a way to add Google+ comments in WordPress. In this article, we will show you how to add Google+ comments in WordPress.&#8230;&#160;<strong><a href="http://www.wpbeginner.com/plugins/how-to-add-google-comments-in-wordpress/">Read More &#187;</a></strong></p><p>To leave a comment please visit <a href="http://www.wpbeginner.com/plugins/how-to-add-google-comments-in-wordpress/">How to Add Google+ Comments in WordPress</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Not too long ago Google announced Google+ comments for their blogging platform, Blogger. Recently, one of our readers asked us if there was a way to add Google+ comments in WordPress. In this article, we will show you how to add Google+ comments in WordPress. We will also discuss the pros and cons of using Google+ comments on your site, so you can make an informed decision. </p>
<h4>Advantages of Google+ Comments in WordPress</h4>
<p>Even though Facebook is still way ahead in number of active users, Google+ has a fairly large number of regular users as well. Many of these users are highly engaged in their circles. So whether you <a href="http://www.wpbeginner.com/plugins/how-to-install-and-setup-facebook-comments-in-wordpress/" title="How to Install and Setup Facebook Comments in WordPress" target="_blank">add Facebook comments</a> to WordPress or Google+ comments, one obvious advantage is that you may see an increase in visibility. Often users have a tendency to share their comments publicly on their walls or timelines which means their friends will see your site.  </p>
<p>Another advantage is convenience. Since most people are already signed in with their Google+ account, they do not have to fill in their name or email. Some folks might find this more convenient.</p>
<p>We all know that Google has big plans of integrating social media (Google+) with their search ranking. A lot of Google+ posts are indexed in Google, and sometimes they rank pretty high for long tail keywords. We have heard from few that staying active and engaging with users on Google+ is part of their active long tail search strategy. If the user is sharing their comments from your site on their profile, then it shows up as a status, so it has a potential of having some SEO benefits. We already know that having verified <a href="http://www.wpbeginner.com/wp-tutorials/how-to-get-googles-verified-authorship-for-your-wordpress-blog/" title="How to Get Google Authorship in WordPress">Google+ authorship</a> on the site has helped many see an increase in their traffic. [Related: <a href="http://www.wpbeginner.com/wp-tutorials/how-we-increased-our-organic-search-traffic-by-using-hittail/" title="How we increased our organic search traffic">how we increased our organic search traffic</a>]</p>
<h4>Disadvantages of Google+ Comments in WordPress</h4>
<p>One of the biggest disadvantage of using Google+ comments is that right now there is no <strong>official</strong> Google plugin for WordPress. This means that some features like comment notifications are not available for WordPress users. What that means is that you would have to manually check all of your posts to see if there is a new comment unless ofcourse you were tagged in the comment.</p>
<p>Since most Google+ comment plugins are unofficial, there is always that scare of when will Google shut it down? It is pretty unlikely, but it can happen. If it does happen, then you lose all of your comments. There are hundreds of WordPress plugins for other Google products, and they seem to be working fine for a long time. </p>
<p>Last but not least, some people just aren&#8217;t comfortable logging in with their profile to leave a comment. They might want to remain anonymous. A solution to this problem is adding WordPress commenting system as an alternate option. </p>
<h4>Adding Google+ Comments in WordPress</h4>
<p>First thing you need to do is install and activate the <a href="http://wordpress.org/extend/plugins/gplus-comments/" title="Google+ Comments for WordPress" target="_blank" rel="nofollow">Google+ Comments for WordPress</a> plugin. Upon activation, the plugin adds two options under the Comments menu item in your WordPress admin. Go to <strong>Comments &raquo; G+ comments</strong> to configure the plugin. </p>
<p><img src="http://cdn4.wpbeginner.com/wp-content/uploads/2013/05/gpluscommentsettings.jpg" alt="Configuring Google+ Comments settings in WordPress" width="520" height="467" class="alignnone size-full wp-image-14400" /></p>
<p>Google+ Comments for WordPress plugin allows you to add a tabbed commenting area. This means that you can have Google+ comments along with other comment options such as your default WordPress comments, Facebook comments, and Disqus. You can arrange the order and the platforms you want to display. You can also change the label for each tab. Once you are done with the settings, click on the Save Changes button. Now when you go to any post in your blog, you will see tabbed comments like this: </p>
<p><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/05/gpluscommentsdemo.jpg" alt="Google+ Comments Demo" width="520" height="495" class="alignnone size-full wp-image-14401" /></p>
<h4>Conclusion</h4>
<p>We hope that this article helped you add Google+ comments in WordPress. Before concluding this article, we feel obliged to let our readers know why we are not using Google+ comments on our site. We are not huge fans of third party commenting systems. We used LiveFyre on our site for a whole year, and ended up <a href="http://www.wpbeginner.com/opinion/reasons-why-we-switched-away-livefyre/" title="Why we Switched Away From Livefyre" target="_blank">switching away</a>. But just because third party commenting system is not a fit for our site does not mean that it doesn&#8217;t for others. </p>
<p>Will you be adding Google+ Comments on your site? Let us know your thoughts on Google+ comments by leaving a comment below. </p>
<p>To leave a comment please visit <a href="http://www.wpbeginner.com/plugins/how-to-add-google-comments-in-wordpress/">How to Add Google+ Comments in WordPress</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p><div class="feedflare">
<a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=oYf_q5yj9Qw:Y4J5TB3InJQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=oYf_q5yj9Qw:Y4J5TB3InJQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=oYf_q5yj9Qw:Y4J5TB3InJQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=oYf_q5yj9Qw:Y4J5TB3InJQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=oYf_q5yj9Qw:Y4J5TB3InJQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=oYf_q5yj9Qw:Y4J5TB3InJQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=oYf_q5yj9Qw:Y4J5TB3InJQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=oYf_q5yj9Qw:Y4J5TB3InJQ: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/oYf_q5yj9Qw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/plugins/how-to-add-google-comments-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/plugins/how-to-add-google-comments-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>How to Add a News Ticker in WordPress</title>
		<link>http://feeds.wpbeginner.com/~r/wpbeginner/~3/EtSCfshtx5A/</link>
		<comments>http://www.wpbeginner.com/plugins/how-to-add-a-news-ticker-in-wordpress/#comments</comments>
		<pubDate>Wed, 12 Jun 2013 12:00:09 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[displaying announcements in wordpress]]></category>
		<category><![CDATA[floating footer bar]]></category>
		<category><![CDATA[floating footer bar wordpress]]></category>
		<category><![CDATA[hellobar]]></category>
		<category><![CDATA[news ticker for wordpress]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=11422</guid>
		<description><![CDATA[<p>News tickers sometimes referred to as slides are located at the bottom of most television news networks to highlight breaking news, daily trends, etc. You can use a news ticker on your WordPress website to highlight special deals, popular posts, or anything else. In this&#8230;&#160;<strong><a href="http://www.wpbeginner.com/plugins/how-to-add-a-news-ticker-in-wordpress/">Read More &#187;</a></strong></p><p>To leave a comment please visit <a href="http://www.wpbeginner.com/plugins/how-to-add-a-news-ticker-in-wordpress/">How to Add a News Ticker in WordPress</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>News tickers sometimes referred to as slides are located at the bottom of most television news networks to highlight breaking news, daily trends, etc. You can use a news ticker on your WordPress website to highlight special deals, popular posts, or anything else. In this article, we will show you how to add a rotating or scrolling news ticker in WordPress. </p>
<p>First thing you need to do is install and activate the <a href="http://wordpress.org/extend/plugins/ditty-news-ticker/" title="Ditty News Ticker" target="_blank" rel="nofollow">Ditty News Ticker</a> plugin. Upon activation, the plugin adds a News Ticker menu item in your WordPress admin. Bring your mouse over to the menu item and click on the Add New link to add a news ticker.</p>
<p>On the next screen, you will have the ability give this particular news ticker a name, ticker text and link. For each ticker, you can add as many ticker items as you like. If you want to add another ticker item, then press the green + button to add the next item on the ticker. Once you are done adding ticker items, scroll down to Ticker Mode. There are three different ticker modes available. Scroll, rotate, and list. The scroll mode is the default one because it is the most commonly used in television networks. Rotate is another good option if you want to show one ticker at a time.</p>
<p><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/03/add-news-ticker.jpg" alt="Adding news ticker items" width="520" height="320" class="alignnone size-full wp-image-11491" title="Adding news ticker items" /></p>
<p>If you want to adjust the behavior of the news ticker, then scroll down to the <em>Scroll settings</em> panel. This panel allows you to configure scroll speed and dimensions. You can also choose the spacing between each ticker items and pause items when a user brings their mouse over the ticker. </p>
<p><img src="http://cdn2.wpbeginner.com/wp-content/uploads/2013/03/news-ticker-scroll-settings.jpg" alt="News ticker scroll settings" width="520" height="320" class="alignnone size-full wp-image-11490" title="News ticker scroll settings" /></p>
<p>The plugin generates a shortcode as well as a PHP function for each news ticker you create. You can either use the shortcode inside a post, page, sidebar widget, or you can directly insert the PHP function in your theme files. </p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2013/03/news-shortcode.jpg" alt="News ticker shortcode and php function" width="520" height="320" class="alignnone size-full wp-image-11489" title="News ticker shortcode and php function" /></p>
<p>Once you insert the ticker shortcode or PHP function, then it should work. We hope that this article helped you add a news ticker to your WordPress website. Would you use a news ticker on your website, or do you rather prefer our <a href="http://www.wpbeginner.com/wp-tutorials/how-to-create-a-sticky-floating-footer-bar-in-wordpress/" title="How to Create a Sticky Floating Footer Bar in WordPress">sticky floating footer bar</a>? Let us know by leaving a comment below.</p>
<p>To leave a comment please visit <a href="http://www.wpbeginner.com/plugins/how-to-add-a-news-ticker-in-wordpress/">How to Add a News Ticker in WordPress</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p><div class="feedflare">
<a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=EtSCfshtx5A:e4CcK-4QLyo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=EtSCfshtx5A:e4CcK-4QLyo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=EtSCfshtx5A:e4CcK-4QLyo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=EtSCfshtx5A:e4CcK-4QLyo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=EtSCfshtx5A:e4CcK-4QLyo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=EtSCfshtx5A:e4CcK-4QLyo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=EtSCfshtx5A:e4CcK-4QLyo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=EtSCfshtx5A:e4CcK-4QLyo: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/EtSCfshtx5A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/plugins/how-to-add-a-news-ticker-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/plugins/how-to-add-a-news-ticker-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>How to Install WordPress in Other Languages</title>
		<link>http://feeds.wpbeginner.com/~r/wpbeginner/~3/1DuaKNGFHFc/</link>
		<comments>http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-in-other-languages/#comments</comments>
		<pubDate>Tue, 11 Jun 2013 12:00:51 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[install wordpress]]></category>
		<category><![CDATA[install wordpress in other languages]]></category>
		<category><![CDATA[non-english wordpress]]></category>
		<category><![CDATA[translating wordpress]]></category>
		<category><![CDATA[wordpress in other languages]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=13868</guid>
		<description><![CDATA[<p>In the past, we have written a fairly through guide on how to install WordPress by using 1-click install method, manual 5 minute install, as well as local installs. Recently it was brought to our attention that we missed a fairly important part: localization of&#8230;&#160;<strong><a href="http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-in-other-languages/">Read More &#187;</a></strong></p><p>To leave a comment please visit <a href="http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-in-other-languages/">How to Install WordPress in Other Languages</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>In the past, we have written a fairly through guide on <a href="http://www.wpbeginner.com/how-to-install-wordpress/" title="How to Install WordPress">how to install WordPress</a> by using 1-click install method, manual 5 minute install, as well as local installs. Recently it was brought to our attention that we missed a fairly important part: localization of WordPress installs. WordPress is used on millions of websites around the globe. One of the reasons behind its popularity is the fact that WordPress is easy to localize and can be used to build websites in any language. In this article we will show you how to install WordPress in other languages, so you can change the default language in WordPress.</p>
<p><img src="http://cdn2.wpbeginner.com/wp-content/uploads/2013/05/wordpress-languages.png" alt="WordPress in French" width="520" height="380" class="alignnone size-full wp-image-14081" title="WordPress in French" /></p>
<h4>Things You Need Before Localizing WordPress</h4>
<p>You will need to have completed the basic WordPress install before you can install the language pack. Yes, you do need to have a domain name and a <a href="http://www.wpbeginner.com/wordpress-hosting/" title="How to Choose the best WordPress Hosting">web hosting</a> account. To install WordPress, please follow our tutorial on <a href="http://www.wpbeginner.com/how-to-install-wordpress/" title="How to Install WordPress">how to install WordPress</a>.</p>
<p>Now that you have installed WordPress, lets look at how you can translate it for your language. </p>
<h4>Installing WordPress Translation Files For Other Languages</h4>
<p>WordPress uses gettext system for translations (localization and internationalization). WordPress volunteers from around the world use a main .pot template file to translate WordPress in their languages. This results into two files for each language. Portable Object format file with .po extension,  and Machine Object file with .mo extension. You will need a .mo file for your language. </p>
<p>Go to <a href="http://codex.wordpress.org/WordPress_in_Your_Language" title="WordPress in your Language" target="_blank" rel="nofollow">WordPress in your Language</a> page to see if there is a WordPress translation available for your language. WordPress is available in many languages including but not limited to: Spanish, French, Arabic, Korean, German, Hebrew, Hindi, Japanese, Vietnamese, Chinese (Han), Portuguese, and many others.</p>
<p>You need to download and upload the .mo language file to your <code>/wp-content/languages/</code> OR <code>/wp-includes/languages/</code> folder. You will have to create a new folder called languages in the wp-content directory.</p>
<p>Once you have uploaded all the .mo and .po files that came with your language, the next step is to tell WordPress to use these language files. Open your <code>wp-config.php</code> file and add the following code: </p>
<pre class="brush: php; title: ; notranslate">
// Replace fr_FR with your language and country code
define ('WPLANG', 'fr_FR');
</pre>
<p>Replace fr_FR with your language and country code. The first two letters are for the language code and the other two letters are for the country code. You can find your <a href="http://www.gnu.org/software/gettext/manual/gettext.html#Language-Codes" title="Language and Country codes to be used for Gettext" rel="nofollow">language and country codes here</a>.</p>
<p>Once you add that text to your wp-config, WordPress will automatically start displaying the admin area in your language. For those of you who don&#8217;t want to mess with codes, you can use this plugin called <a href="http://www.wpbeginner.com/plugins/native-dashboard-wordpress-dashboard-in-multiple-languages/" title="WP Native Dashboard">WP Native Dashboard</a>. This plugin allows you to easily install and enable WordPress in your language. Another beauty of WP Native Dashboard plugin is that it allows you to have multiple languages. If you have multiple authors on your site, then you can give them the ability to use WordPress in their native language.</p>
<p>The installation files only convert the WordPress administration areas in your language. You may still need to translate your WordPress theme or other plugins. This can be challenging specially if you have a right-to-left language such as Arabic. While the default WordPress themes (twentytwelve, etc) comes built-in with RTL styles, other third party themes may not. </p>
<h4>Help Translate WordPress in Your Language</h4>
<p>If you did not find an available translation for WordPress in your language, then perhaps you can help create one. WordPress is an open source software, and all available translations were created by volunteers through out the world. Check out <a href="http://codex.wordpress.org/Translating_WordPress" title="Translating WordPress" target="_blank" rel="nofollow">Translating WordPress</a> page for more information on how you can contribute. </p>
<p>We hope that this article helped you install WordPress in other languages. For questions and feedback please leave a comment below. </p>
<p>To leave a comment please visit <a href="http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-in-other-languages/">How to Install WordPress in Other Languages</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p><div class="feedflare">
<a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=1DuaKNGFHFc:_j1zfUbs798:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=1DuaKNGFHFc:_j1zfUbs798:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=1DuaKNGFHFc:_j1zfUbs798:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=1DuaKNGFHFc:_j1zfUbs798:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=1DuaKNGFHFc:_j1zfUbs798:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=1DuaKNGFHFc:_j1zfUbs798:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=1DuaKNGFHFc:_j1zfUbs798:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=1DuaKNGFHFc:_j1zfUbs798: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/1DuaKNGFHFc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-in-other-languages/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-in-other-languages/</feedburner:origLink></item>
		<item>
		<title>How to Add a Facebook Follow Button for Authors in WordPress</title>
		<link>http://feeds.wpbeginner.com/~r/wpbeginner/~3/DDV6nfEv64U/</link>
		<comments>http://www.wpbeginner.com/wp-tutorials/how-to-add-a-facebook-follow-button-for-authors-in-wordpress/#comments</comments>
		<pubDate>Mon, 10 Jun 2013 12:00:39 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook like box]]></category>
		<category><![CDATA[facebook send button]]></category>
		<category><![CDATA[like button]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=13532</guid>
		<description><![CDATA[<p>Not every blog needs a facebook fan page. If you have a personal blog, then you can easily use your Facebook profile and the subscription feature to allow users to follow you on facebook. Similar to the like box, facebook offers a follow button for&#8230;&#160;<strong><a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-a-facebook-follow-button-for-authors-in-wordpress/">Read More &#187;</a></strong></p><p>To leave a comment please visit <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-a-facebook-follow-button-for-authors-in-wordpress/">How to Add a Facebook Follow Button for Authors in WordPress</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Not every blog needs a facebook fan page. If you have a personal blog, then you can easily use your Facebook profile and the subscription feature to allow users to follow you on facebook. Similar to the <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-the-facebook-like-box-fan-box-in-wordpress/" title="How to Add a Facebook Like Box / Fan Box in WordPress" target="_blank">like box</a>, facebook offers a follow button for users to use on their websites. Recently, one of users asked us how to add a Facebook follow button in WordPress. In this article we will show you how to add a Facebook follow button for authors in WordPress.</p>
<p>For single author blogs, you can just get the code from Facebook Social plugins page and paste it in your templates or a widget. On the other hand sites with multiple authors have to take few more steps.</p>
<p><img src="http://cdn4.wpbeginner.com/wp-content/uploads/2013/05/fbfollow.jpg" alt="Facebook Follow Button" width="456" height="42" class="alignnone size-full wp-image-14294" /></p>
<h4>Adding Facebook Follow Button for a Single Author WordPress Blog</h4>
<p>For a single author WordPress website, the simplest way to add a Facebook Follow button is by getting the code from <a href="https://developers.facebook.com/docs/reference/plugins/follow/" title="Follow Button" rel="nofollow" target="_blank">Facebook Social Plugins website</a> and pasting it into your WordPress theme template, widget, or a page.</p>
<p><img src="http://cdn2.wpbeginner.com/wp-content/uploads/2013/05/facebook-follow-button-code.jpg" alt="Manually adding Facebook follow button from Facebook social plugins website" width="520" height="320" class="alignnone size-full wp-image-13992" title="Manually adding Facebook follow button from Facebook social plugins website" /></p>
<p>Simply provide the Facebook profile URL of the user, and facebook will automatically generate a preview of the follow button on the right. Choose a layout and configure the appearance of the plugin, and then click the <em>Get code</em> button. Copy the code in <code>&lt;iframe&gt;</code> tab and paste it in a widget, post, or page. </p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2013/05/get-iframe-code.jpg" alt="Get the follow button code in an iframe for your WordPress website" width="520" height="320" class="alignnone size-full wp-image-13993" title="Get the follow button code in an iframe for your WordPress website" /> </p>
<h4>Adding Facebook Follow Button on Multi-Author WordPress Blog</h4>
<p>First thing you need to do is install and activate <a href="http://wordpress.org/extend/plugins/facebook/" title="Facebook plugin for WordPress" target="_blank" rel="nofollow">Facebook</a> plugin. Upon activation the plugin adds a <em>Facebook</em> menu item in your WordPress admin sidebar. Clicking on it will take you to plugin&#8217;s General settings page. This page will ask you to provide application key and secret key. </p>
<h4>How to create a Facebook Application for your Website</h4>
<p>Go to Facebook <a href="https://developers.facebook.com/apps" title="Facebook Developers" target="_blank" rel="nofollow">Developers</a> website and log in with your Facebook account. Next, click on <strong>Create New App</strong> button. </p>
<p><img src="http://cdn2.wpbeginner.com/wp-content/uploads/2013/05/create-facebook-app.jpg" alt="Creating a new Facebook App" width="520" height="320" class="alignnone size-full wp-image-13491" title="Creating a new Facebook App" /></p>
<p>A small pop up would appear, and it will ask you to provide a name for your app. The other two fields in this form are optional.</p>
<p><img src="http://cdn2.wpbeginner.com/wp-content/uploads/2012/12/create-new-fb-app2.jpeg" alt="Give a name to your Facebook app" width="520" height="181" class="alignnone size-full wp-image-9672" title="Give a name to your Facebook app" /></p>
<p>Now you will land on a developer page for your app where you will see your App ID and APP Secret Key. You need to copy those keys and enter them into the Facebook plugin&#8217;s page on your WordPress website. </p>
<h4>Adding the Facebook Follow Button</h4>
<p>Go to <strong>Facebook &raquo; Follow Button</strong> menu option. The plugin settings are pretty intuitive. You would need to choose where you want the follow button to appear (posts, page, archives, home, etc.) and position (before or after posts, or both). Ideally, you would want to display author information on single posts. Depending on your theme, you can choose to display the Facebook follow button below the posts or before the post content. You can also choose the color scheme and content width. There are three layout available for the follow button (standard, button count, and box count). Choose the one that compliments your site&#8217;s layout and save changes. </p>
<p><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/05/follow-button-layouts.png" alt="Follow button layouts" width="520" height="200" class="alignnone size-full wp-image-13586" title="Follow button layouts" /></p>
<p>Once the app setup is complete, each user must connect their Facebook account with the site. If you are the only author on your website, then go to <strong>Facebook &raquo; Social Publisher</strong> and click on the link <em>Associate your WordPress account with a Facebook account</em>.</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2013/05/connect-wordpress-facebook.png" alt="Connect your WordPress website account to your Facebook account" width="520" height="320" class="alignnone size-full wp-image-13504" title="Connect your WordPress website account to your Facebook account" /></p>
<p>Clicking on the link will open a pop-up window asking your permission to connect your WordPress website&#8217;s app and your Facebook account. </p>
<p>Other authors on your website can connect their accounts from <strong>Users &raquo; Profile</strong> page. Where they will see a link to connect their account. </p>
<p><img src="http://cdn4.wpbeginner.com/wp-content/uploads/2013/05/wp-to-facebook.png" alt="Authors can connect their accounts to Facebook too" width="520" height="320" class="alignnone size-full wp-image-13507" title="Authors can connect their accounts to Facebook too" /></p>
<h4>Example Screenshot</h4>
<p><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/05/follow-button-demo.png" alt="Facebook Follow Button" width="520" height="320" class="alignnone size-full wp-image-13606" title="Facebook Follow Button" /></p>
<p>Aside from the follow button, Facebook offers various other ways to integrate your website with Facebook such as: <a href="http://www.wpbeginner.com/plugins/how-to-install-and-setup-facebook-comments-in-wordpress/" title="How to Install and Set up Facebook Comments in WordPress" target="_blank">Facebook comments</a>, <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-facebook-like-button-in-wordpress/" title="How to Add Facebook Like Button in WordPress" target="_blank">Facebook Like button</a>, <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-facebook-send-button-in-wordpress/" title="How to Add Facebook Send Button in WordPress" target="_blank">Facebook Send Button</a> etc. </p>
<p>We hope that this article helped you add a Facebook follow button for authors on your WordPress site. If you have any questions or suggestions, then please leave a comment below. </p>
<p>To leave a comment please visit <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-a-facebook-follow-button-for-authors-in-wordpress/">How to Add a Facebook Follow Button for Authors in WordPress</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p><div class="feedflare">
<a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=DDV6nfEv64U:D_1OBrXHIq0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=DDV6nfEv64U:D_1OBrXHIq0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=DDV6nfEv64U:D_1OBrXHIq0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=DDV6nfEv64U:D_1OBrXHIq0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=DDV6nfEv64U:D_1OBrXHIq0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=DDV6nfEv64U:D_1OBrXHIq0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=DDV6nfEv64U:D_1OBrXHIq0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=DDV6nfEv64U:D_1OBrXHIq0: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/DDV6nfEv64U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/how-to-add-a-facebook-follow-button-for-authors-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/wp-tutorials/how-to-add-a-facebook-follow-button-for-authors-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>Best WordPress Themes for Family Blogs 2013</title>
		<link>http://feeds.wpbeginner.com/~r/wpbeginner/~3/LAitQysv-dY/</link>
		<comments>http://www.wpbeginner.com/showcase/best-wordpress-themes-for-family-blogs-2013/#comments</comments>
		<pubDate>Fri, 07 Jun 2013 12:00:46 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Showcase]]></category>
		<category><![CDATA[WordPress Baby Themes]]></category>
		<category><![CDATA[WordPress Family Themes]]></category>
		<category><![CDATA[WordPress Wedding Themes]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=11418</guid>
		<description><![CDATA[<p>There are lots of people developing WordPress themes for photographers, restaurants, churches, etc. Recently while helping one of our users setup a WordPress blog, we ended up looking into WordPress themes that would be a good fit for family blogs. There are many folks who&#8230;&#160;<strong><a href="http://www.wpbeginner.com/showcase/best-wordpress-themes-for-family-blogs-2013/">Read More &#187;</a></strong></p><p>To leave a comment please visit <a href="http://www.wpbeginner.com/showcase/best-wordpress-themes-for-family-blogs-2013/">Best WordPress Themes for Family Blogs 2013</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>There are lots of people developing WordPress themes for <a href="http://www.wpbeginner.com/showcase/best-wordpress-photography-themes-of-2012/" title="Best WordPress Themes for Photographers">photographers</a>, <a href="http://www.wpbeginner.com/showcase/best-wordpress-restaurant-themes-of-2013/" title="Best Restaurant Themes for WordPress">restaurants</a>, <a href="http://www.wpbeginner.com/showcase/best-wordpress-themes-for-churches-2013/" title="Best Church Themes for WordPress">churches</a>, etc. Recently while helping one of our users <a href="http://www.wpbeginner.com/free-wordpress-blog-setup/" title="Setup a WordPress Blog">setup a WordPress blog</a>, we ended up looking into WordPress themes that would be a good fit for family blogs. There are many folks who want to create their own small family websites to host photographs, maintain baby blogs, run a wedding website, or talk about family history or genealogy. In this article, we will showcase the best WordPress themes for family blogs that we found. </p>
<h4><a href="http://www.wpbeginner.com/refer/studiopress-blissful/" target="_blank" rel="nofollow" title="Blissful - A wedding theme by StudioPress">1. Blissful</a></h4>
<p><a href="http://www.wpbeginner.com/refer/studiopress-blissful/" title="Blissful - A wedding theme by StudioPress" target="_blank" rel="nofollow"><img src="http://cdn4.wpbeginner.com/wp-content/uploads/2013/03/blissful.jpg" alt="Blissful - A wedding theme by StudioPress" width="520" height="320" class="alignnone size-full wp-image-11472" title="Blissful - A wedding theme by StudioPress" /></a></p>
<p>Blissful is a premium WordPress theme designed specifically for wedding websites. It has soft wedding themed colors and support for featured images to showcase photographs from engagement to the reception. It comes with 3 layout options and custom header support. Theme customization is easy and simple. </p>
<h4><a href="http://wordpress.org/extend/themes/babylog" rel="nofollow" target="_blank" title="Babylog - WordPress theme for baby blogs">2. Babylog</a></h4>
<p><a href="http://wordpress.org/extend/themes/babylog" title="A WordPress Theme for Baby Blogs" target="_blank" rel="nofollow"><img src="http://cdn4.wpbeginner.com/wp-content/uploads/2013/03/babylog.jpg" alt="Babylog - WordPress theme for baby blogs" width="520" height="320" class="alignnone size-full wp-image-11473" /></a></p>
<p>Babylog is a free WordPress theme designed specifically for mommies to keep a baby journal. It comes in four colors pink, purple, blue and green. The cute baby illustration in the header is customizable you can change the skin tone of baby and hair color from theme options.  </p>
<h4><a href="http://www.wpbeginner.com/refer/colorlabs-adam-eve/" title="Adam &amp; Eve - A couple-blog" rel="nofollow" target="_blank">3. Adam &amp; Eve</a></h4>
<p><a href="http://www.wpbeginner.com/refer/colorlabs-adam-eve/" title="Adam &amp; Eve - A couple-blog Theme" target="_blank" rel="nofollow"><img src="http://cdn4.wpbeginner.com/wp-content/uploads/2013/03/adam-eve.jpg" alt="Adam &amp; Eve - A couple-blog theme" width="520" height="320" class="alignnone size-full wp-image-11474" title="Adam &amp; Eve - A couple-blog theme" /></a></p>
<p>Adam and Eve is a premium WordPress theme for a couple blog. It can publish posts by two authors side by side. Ideal for couples who want to write a blog together, wedding blog, expecting parents blog, etc. It comes with a featured posts sider, widgets, and a responsive layout.</p>
<h4><a href="http://www.wpbeginner.com/refer/studiopress-pretty/" title="Pretty Young Thing Theme" rel="nofollow" target="_blank">4. Pretty Young Thing</a></h4>
<p><a href="http://www.wpbeginner.com/refer/studiopress-pretty/" title="Pretty Young Thing Theme" target="_blank" rel="nofollow"><img src="http://cdn4.wpbeginner.com/wp-content/uploads/2013/03/pretty-theme.jpg" alt="Pretty Young Thing Theme" width="520" height="320" class="alignnone size-full wp-image-11476" title="Pretty Young Thing Theme" /></a></p>
<p>Pretty Young Thing is a premium WordPress theme by <a href="http://www.wpbeginner.com/refer/studiopress/"rel="nofollow" target="_blank" >StudioPress</a>. It comes in three colors pretty pink, teal, and yellow. It is a multi-purpose blog theme but because of the color options it could ideally be a wedding blog, a babylog, or a family blog. Apart from 3 color choices, it also has 6 layout options, custom headers, and featured image support. </p>
<h4><a href="http://wordpress.org/extend/themes/spirit" title="Spirit - A Free WordPress Theme for Holidays" rel="nofollow" target="_blank">5. Spirit</a></h4>
<p><a href="http://wordpress.org/extend/themes/spirit" title="Spirit - A Free WordPress Theme for Holidays" target="_blank" rel="nofollow"><img src="http://cdn4.wpbeginner.com/wp-content/uploads/2013/03/spirit.jpg" alt="Spirit - A Free WordPress Theme for Holidays" width="520" height="320" class="alignnone size-full wp-image-11478" /></a></p>
<p>Spirit is a WordPress holidays theme and it is free. This illustrated theme has texture, snow fall, a christmas tree and the colors of the season. Spirit has support for custom headers, featured images, post formats, and it is idea for personal and family blogs. </p>
<h4><a href="http://wordpress.org/extend/themes/mybaby" title="My Baby WordPress Theme" rel="nofollow" target="_blank">6. MyBaby</a></h4>
<p><a href="http://wordpress.org/extend/themes/mybaby" title="My Baby WordPress Theme" rel="nofollow" target="_blank"><img src="http://cdn.wpbeginner.com/wp-content/uploads/2013/03/mybaby.jpg" alt="MyBaby Free WordPress Theme" width="520" height="320" class="alignnone size-full wp-image-11480" title="MyBaby Free WordPress Theme" /></a></p>
<p>My Baby is a WordPress theme designed specifically for announcing babies and manage a baby blog. It is based on Twenty Eleven so can be used for any kind of website and has the same features as Twenty Eleven. </p>
<h4><a href="http://wordpress.org/extend/themes/pachyderm" title="Pachyderm cute, free, responsive, microblogging theme" target="_blank" rel="nofollow">7. Pachyderm</a></h4>
<p><a href="http://wordpress.org/extend/themes/pachyderm" title="Pachyderm cute, free, responsive, microblogging theme" target="_blank" rel="nofollow"><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/03/pachyderm.jpg" alt="Pachyderm cute, free, responsive, microblogging theme" width="520" height="320" class="alignnone size-full wp-image-11481" title="Pachyderm cute, free, responsive, microblogging theme" /></a></p>
<p>Pachyderm is a free WordPress theme. It is illustrated and has icons for post formats. Ideal for personal blogs, or websites for young readers. The theme supports default WordPress theme customization options. In the screenshot above you don&#8217;t see the sidebar but it does have sidebar which can be disabled. </p>
<h4><a href="http://www.wpbeginner.com/refer/themify-minblr/" rel="nofollow" target="_blank" title="Minblr - A Microblogging theme by Themify">8. Minblr</a></h4>
<p><a href="http://www.wpbeginner.com/refer/themify-minblr/" rel="nofollow" target="_blank" title="Minblr - A Microblogging theme by Themify"><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/03/minblr.jpg" alt="Minblr - A Microblogging theme by Themify" width="520" height="320" class="alignnone size-full wp-image-11484" title="Minblr - A Microblogging theme by Themify" /></a></p>
<p><a href="http://www.wpbeginner.com/refer/themify-minblr/"rel="nofollow" target="_blank" >Minblr</a> is a responsive, tumblr like microblogging theme. Ideal for personal and family blogs, it comes with 10 skins, multiple page layouts, multiple widget areas, and support for post formats. </p>
<h4><a href="http://www.wpbeginner.com/refer/studiopress-fabric8ted/" title="Fabric8ted by StudioPress" rel="nofollow" target="_blank">9. Fabric8ted</a></h4>
<p><a href="http://www.wpbeginner.com/refer/studiopress-fabric8ted/" title="Fabric8ted by StudioPress" rel="nofollow" target="_blank"><img src="http://cdn2.wpbeginner.com/wp-content/uploads/2013/03/fabric8ed.jpg" alt="Fabric8ted by StudioPress" width="520" height="320" class="alignnone size-full wp-image-11485" /></a></p>
<p>Fabrica8ted is a preimum WordPress theme released by <a href="http://www.wpbeginner.com/refer/studiopress/"rel="nofollow" target="_blank" >StudioPress</a>. What we like about it is the 4 color palletes of muted color schemes. The sophisticated color schemes provide a wonderful backdrop for personal or family blogs. It has 3 layout options, custom header and featured image support. </p>
<p>We hope you find this showcase of best WordPress family themes useful. Let us know your thoughts by leaving a comment below.</p>
<p>To leave a comment please visit <a href="http://www.wpbeginner.com/showcase/best-wordpress-themes-for-family-blogs-2013/">Best WordPress Themes for Family Blogs 2013</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p><div class="feedflare">
<a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=LAitQysv-dY:YZDPqD4FLwE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=LAitQysv-dY:YZDPqD4FLwE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=LAitQysv-dY:YZDPqD4FLwE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=LAitQysv-dY:YZDPqD4FLwE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=LAitQysv-dY:YZDPqD4FLwE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=LAitQysv-dY:YZDPqD4FLwE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=LAitQysv-dY:YZDPqD4FLwE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=LAitQysv-dY:YZDPqD4FLwE: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/LAitQysv-dY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/showcase/best-wordpress-themes-for-family-blogs-2013/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/showcase/best-wordpress-themes-for-family-blogs-2013/</feedburner:origLink></item>
		<item>
		<title>How to Schedule WordPress Posts for Social Media with BufferApp</title>
		<link>http://feeds.wpbeginner.com/~r/wpbeginner/~3/MrGfIJXLLu8/</link>
		<comments>http://www.wpbeginner.com/plugins/how-to-schedule-wordpress-posts-for-social-media-with-bufferapp/#comments</comments>
		<pubDate>Thu, 06 Jun 2013 12:00:56 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[bufferapp]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[ifttt]]></category>
		<category><![CDATA[schedule posts for social media]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress posts to buffer]]></category>
		<category><![CDATA[wordpress posts to social media]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=11789</guid>
		<description><![CDATA[<p>Social media is an important source of traffic for many websites including our own. We have extensively covered social media integration in WordPress. Whether you want to add a twitter button, google+ button or facebook Like / fan box, we have got you covered. One&#8230;&#160;<strong><a href="http://www.wpbeginner.com/plugins/how-to-schedule-wordpress-posts-for-social-media-with-bufferapp/">Read More &#187;</a></strong></p><p>To leave a comment please visit <a href="http://www.wpbeginner.com/plugins/how-to-schedule-wordpress-posts-for-social-media-with-bufferapp/">How to Schedule WordPress Posts for Social Media with BufferApp</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Social media is an important source of traffic for many websites including our own. We have extensively covered social media integration in WordPress. Whether you want to <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-twitters-official-tweet-button-in-wordpress/" title="How to add Twitter's Official Tweet Button in WordPress">add a twitter button</a>, <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-the-google-1-button-to-your-wordpress/" title="How to Add the Google +1 Button in WordPress">google+ button</a> or <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-the-facebook-like-box-fan-box-in-wordpress/" title="How to Add Facebook Like Box / Fan Box in WordPress">facebook Like / fan box</a>, we have got you covered. One of our readers recently asked us if there was a tool that allows you to automatically schedule WordPress posts for social media. The first one that comes to mind is BufferApp because we use it for our projects. In this article, we will show you how to schedule WordPress posts for social media with BufferApp. </p>
<h4>What is BufferApp?</h4>
<p><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/06/buffer-social-media.jpg" alt="Buffer one web application to cross post across your network" width="520" height="320" class="alignnone size-full wp-image-14173" title="Buffer one web application to cross post across your network" /></p>
<p><a href="http://bufferapp.com" title="BufferApp" target="_blank" rel="nofollow">BufferApp</a> is a web based status scheduling service that allows you to post across various social networks. In their own words, BufferApp is a smarter way to share things. It allows you to integrate your Facebook, Twitter, and Linkedin to one single BufferApp account. You can use one single dashboard to share things on all your networks. It also offers analytics, easy scheduling of posts, and <a href="http://www.wpbeginner.com/beginners-guide/how-to-create-your-own-customized-short-url-for-your-blog/" title="How to Create your Own Customized URL Shortening in WordPress">URL shortening</a>. BufferApp also allows you to add team members, which is great for dividing up social media activities. </p>
<h4>Setting up WordPress to Buffer</h4>
<p>First thing you need to do is sign up for a Buffer account. Go to <a href="http://bufferapp.com/" title="BufferApp" target="_blank" rel="nofollow">BufferApp</a> and sign up. You can also sign up using your Twitter, Facebook, or Linkedin account. Once you have signed up, you will be taken to your Buffer Dashboard. </p>
<p>Now that we have created a Buffer account, the next thing is to connect WordPress to your Buffer account. To do that,  install and activate <a href="http://wordpress.org/plugins/post-to-buffer/" title="WordPress to Buffer" target="_blank" rel="nofollow">WordPress to Buffer</a> plugin on your site. After activating the plugin, go to <strong>Settings &raquo; Buffer</strong>. </p>
<p><img src="http://cdn2.wpbeginner.com/wp-content/uploads/2013/06/wptobuffer-settings.jpg" alt="WordPress to Buffer Settings" width="520" height="350" class="alignnone size-full wp-image-14184" title="WordPress to Buffer Settings" /></p>
<p>In order to connect your WordPress site to your Buffer account, you need to create a Buffer App. The plugin will show you a link to create an app. Below the link it will also show you a callback URL which you need to copy because you will need it in the next step. Click on creating an app link which will take you to Buffer App&#8217;s developer website.</p>
<p><img src="http://cdn2.wpbeginner.com/wp-content/uploads/2013/06/creating-buffer-app.jpg" alt="Creating a Buffer App for your WordPress website" width="520" height="380" class="alignnone size-full wp-image-14175" title="Creating a Buffer App for your WordPress website" /></p>
<p>Provide a name and description for your app, for e.g. your website title and description. In the website field provide the URL of your site. In the callback URL field enter the URL shown by WordPress to Buffer plugin. After filling all the required fields, press the create application button. Buffer will now send you an email with a link to access your token. Clicking on that link will take you back to Buffer&#8217;s website where you can see your Client ID and Access token. Copy these and paste them into your WordPress to Buffer settings page. </p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2013/06/connecting-buffertowordpress.jpg" alt="Enter Buffer Client and Access Token to WordPress" width="520" height="350" class="alignnone size-full wp-image-14178" title="Enter Buffer Client and Access Token to WordPress" /></p>
<p>Once you click the update options button, WordPress to Buffer plugin will authenticate your website to buffer and will show all connected accounts to your Buffer profile. Select the accounts you want to post to and save changes. </p>
<p><img src="http://cdn4.wpbeginner.com/wp-content/uploads/2013/06/sync-accounts.jpg" alt="Syncy social media accounts from Buffer to WordPress" width="520" height="320" class="alignnone size-full wp-image-14187" title="Syncy social media accounts from Buffer to WordPress" /></p>
<h4>Schedule or Publish Posts for Social Media using Buffer</h4>
<p>To share your WordPress posts across your social media network, go to <strong>Posts &raquo; Add New</strong>. Scroll down and you will see Add to Buffer meta box. </p>
<p><img src="http://cdn4.wpbeginner.com/wp-content/uploads/2013/06/add-to-buffer.jpg" alt="Add to Buffer, select the accounts to post" width="520" height="320" class="alignnone size-full wp-image-14190" title="Add to Buffer, select the accounts to post" /></p>
<p>If you haven&#8217;t turned on scheduling on Buffer, then your WordPress post will be shared on selected social media websites as soon as you hit the publish button. To enable scheduling, go to BufferApp dashboard and click on Scheduling tab. You can set a timezone and select different times to share your posts.  </p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2013/06/schedule-posts-buffer.jpg" alt="Schedule posts on BufferApp" width="520" height="350" class="alignnone size-full wp-image-14191" title="Schedule posts on BufferApp" /></p>
<p>We hope that this article helped you schedule WordPress posts for social media using BufferApp. Let us know what you are using to connect WordPress to your social media accounts by leaving a comment below. </p>
<p>To leave a comment please visit <a href="http://www.wpbeginner.com/plugins/how-to-schedule-wordpress-posts-for-social-media-with-bufferapp/">How to Schedule WordPress Posts for Social Media with BufferApp</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p><div class="feedflare">
<a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=MrGfIJXLLu8:hPl_uJs_jvI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=MrGfIJXLLu8:hPl_uJs_jvI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=MrGfIJXLLu8:hPl_uJs_jvI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=MrGfIJXLLu8:hPl_uJs_jvI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=MrGfIJXLLu8:hPl_uJs_jvI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=MrGfIJXLLu8:hPl_uJs_jvI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=MrGfIJXLLu8:hPl_uJs_jvI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=MrGfIJXLLu8:hPl_uJs_jvI: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/MrGfIJXLLu8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/plugins/how-to-schedule-wordpress-posts-for-social-media-with-bufferapp/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/plugins/how-to-schedule-wordpress-posts-for-social-media-with-bufferapp/</feedburner:origLink></item>
		<item>
		<title>How To Allow Authors To Revise Published Posts in WordPress</title>
		<link>http://feeds.wpbeginner.com/~r/wpbeginner/~3/SN7FqKgbRaY/</link>
		<comments>http://www.wpbeginner.com/plugins/how-to-allow-authors-to-revise-published-posts-in-wordpress/#comments</comments>
		<pubDate>Wed, 05 Jun 2013 12:00:48 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[allowing users to edit published posts]]></category>
		<category><![CDATA[edit flow]]></category>
		<category><![CDATA[edit old published posts]]></category>
		<category><![CDATA[multi-author]]></category>
		<category><![CDATA[revisions]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=14028</guid>
		<description><![CDATA[<p>WordPress is a powerful blogging platform, but the default installation is not fully equipped for multi-author websites. In the past, we have written about improving editorial workflow on sites with multiple authors. One challenging aspect of managing a multi-author blog is how to allow authors&#8230;&#160;<strong><a href="http://www.wpbeginner.com/plugins/how-to-allow-authors-to-revise-published-posts-in-wordpress/">Read More &#187;</a></strong></p><p>To leave a comment please visit <a href="http://www.wpbeginner.com/plugins/how-to-allow-authors-to-revise-published-posts-in-wordpress/">How To Allow Authors To Revise Published Posts in WordPress</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>WordPress is a powerful blogging platform, but the <a href="http://www.wpbeginner.com/how-to-install-wordpress/" title="How to Install WordPress">default installation</a> is not fully equipped for multi-author websites. In the past, we have written about <a href="http://www.wpbeginner.com/plugins/how-to-improve-your-editorial-workflow-in-multi-author-wordpress-blogs/" title="How to Improve your Editorial Workflow in Multi-author WordPress Blogs">improving editorial workflow</a> on sites with multiple authors. One challenging aspect of managing a multi-author blog is how to allow authors to revise published posts. You might not want to allow authors to make changes to an already published posts without an editorial review. In this article, we will show you how to allow authors to revise published posts in WordPress. </p>
<p>First thing you need to do is install and activate the <a href="http://wordpress.org/plugins/revisionary/" title="Revisionary" target="_blank" rel="nofollow">Revisionary</a> plugin. Upon activation, a new options menu will be added under <strong>Settings &raquo; Revisionary</strong>. The default settings should work on most websites, but you can still review the settings and see if you need to change something. </p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2013/05/revisionary-settings.png" alt="Revisionary settings page" width="520" height="320" class="alignnone size-full wp-image-14048" title="Revisionary settings page" /></p>
<h4>How To Revise Old Published Articles</h4>
<p>Upon installation, Revisionary creates a new user role, called <em>Revisor</em>. You can assign this role to a existing user or create a new user with the Revisor role. A user with the revisor role can edit posts as revisions and submit the revisions for review. These revisions can be reviewed and published by an editor, or an administrator. </p>
<p><img src="http://cdn4.wpbeginner.com/wp-content/uploads/2013/05/submitting-revision.png" alt="Submitting a revision for a published post " width="520" height="320" class="alignnone size-full wp-image-14051" title="Submitting a revision for a published post " /></p>
<p>As an administrator you can review the revisions pending review by visiting  <strong>Posts &raquo; All Posts</strong>. </p>
<p><img src="http://cdn2.wpbeginner.com/wp-content/uploads/2013/05/revisions-pending.png" alt="Revisions pending review" width="520" height="320" class="alignnone size-full wp-image-14053" title="Revisions pending review" /></p>
<p>Editing a revision will take you to the revision manager where you can see the changes. As an editor or administrator, you can also edit the revision. On the top right corner of the screen is the time that the revisor, or the contributor has recommended for the publication of this review. You can change that to either publish the new version right away or schedule it to be published later. Publishing a revision will replace the old post with the new revision. </p>
<p><img src="http://cdn3.wpbeginner.com/wp-content/uploads/2013/05/reviewing-revisions.png" alt="Review the revisions submitted by users" width="520" height="320" class="alignnone size-full wp-image-14054" title="Review the revisions submitted by users" /></p>
<p>Users with revisor, or contributor user roles can also edit their revisions before they are published. To review the changes, click on the Compare Selected HTML. Revisionary will highlight the differences between different versions. </p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2013/05/revision-difference.png" alt="Reviewing difference between two revisions" width="520" height="320" class="alignnone size-full wp-image-14055" title="Reviewing difference between two revisions" /></p>
<p>Permissions for existing and pre-defined WordPress user roles remain unchanged. However, you can manage user roles and permissions using user role management plugins such as <a href="http://wordpress.org/plugins/role-scoper/" title="Role Scoper" target="_blank" rel="nofollow">Role Scoper</a> or <a href="http://wordpress.org/plugins/capability-manager-enhanced/" title="Capability Manager Enhanced" target="_blank" rel="nofollow">capabilities manager enhanced</a>. </p>
<p>We hope that this article helped you allow authors to revise old published posts in WordPress. For questions and feedback please leave a comment below.</p>
<p>To leave a comment please visit <a href="http://www.wpbeginner.com/plugins/how-to-allow-authors-to-revise-published-posts-in-wordpress/">How To Allow Authors To Revise Published Posts in WordPress</a> on <a href="http://www.wpbeginner.com/" target="_blank" rel="friend">WPBeginner</a>.</p><div class="feedflare">
<a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=SN7FqKgbRaY:7kI36K1dXaM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=SN7FqKgbRaY:7kI36K1dXaM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=SN7FqKgbRaY:7kI36K1dXaM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=SN7FqKgbRaY:7kI36K1dXaM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=SN7FqKgbRaY:7kI36K1dXaM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=SN7FqKgbRaY:7kI36K1dXaM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=SN7FqKgbRaY:7kI36K1dXaM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.wpbeginner.com/~ff/wpbeginner?a=SN7FqKgbRaY:7kI36K1dXaM: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/SN7FqKgbRaY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/plugins/how-to-allow-authors-to-revise-published-posts-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.wpbeginner.com/plugins/how-to-allow-authors-to-revise-published-posts-in-wordpress/</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Content Delivery Network via cdn.wpbeginner.com

 Served from: www.wpbeginner.com @ 2013-06-19 02:14:39 by W3 Total Cache -->
