<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" 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>Wed, 08 Feb 2012 13:37:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/wpbeginner" /><feedburner:info uri="wpbeginner" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://www.wpbeginner.com/?pushpress=hub" /><feedburner:emailServiceId>wpbeginner</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to Create a Custom Single Attachments Template in WordPress</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/YqkXheaivHM/</link>
		<comments>http://www.wpbeginner.com/wp-themes/how-to-create-a-custom-single-attachments-template-in-wordpress/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 13:37:46 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[custom single attachment template in wordpress]]></category>
		<category><![CDATA[single attachments template]]></category>
		<category><![CDATA[wordpress attachements template]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5212</guid>
		<description><![CDATA[<p>In the process of creating a total gallery display in WordPress powered by Custom Post Types, we have shared the code for how to get all post attachments in WordPress except for Featured Image. We have also showed you how to add additional fields to the WordPress Media uploader. In this article, we will show you how to use the additional fields in the media uploader and display them in a custom single attachments template. Before we start, it is...</p><p><a href="http://www.wpbeginner.com/wp-themes/how-to-create-a-custom-single-attachments-template-in-wordpress/">How to Create a Custom Single Attachments Template in WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>]]></description>
			<content:encoded><![CDATA[<p>In the process of creating a total gallery display in WordPress powered by Custom Post Types, we have shared the code for <a href="http://www.wpbeginner.com/wp-themes/how-to-get-all-post-attachments-in-wordpress-except-for-featured-image/" title="Get all Post Attachments in WordPress Except for Featured Image">how to get all post attachments in WordPress except for Featured Image</a>. We have also showed you <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-additional-fields-to-the-wordpress-media-uploader/" title="Additional Fields in the Media Uploader">how to add additional fields to the WordPress Media uploader</a>. In this article, we will show you how to use the additional fields in the media uploader and display them in a custom single attachments template. </p>
<p>Before we start, it is important that you understand how the template hierarchy works for attachments. You can either specify it like <strong>mime_type.php</strong>. <a href="http://en.wikipedia.org/wiki/Internet_media_type" title="Mime Type" target="_blank">Mime type</a> examples (image.php, video.php, application.php etc). For specifying it just for a certain image type, you can say image_gif.php. If the mime_type.php is not found, then it looks for attachment.php, then single-attachment.php, then single.php, then index.php.</p>
<p>It depends on how custom of a project you are working for, you may not need to create image_gif.php. You can simply suffice for image.php or even attachment.php.</p>
<p>All you have to do is open a blank file and copy all of your <em>single.php</em> content in there. You can save it as single-attachment.php or any other mime_type that you want. Then replace the loop code with something like this:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
if ( have_posts() ) : while ( have_posts() ) : the_post();
$photographer = get_post_meta($post-&gt;ID, 'be_photographer_name', true);
$photographerurl = get_post_meta($post-&gt;ID, 'be_photographer_url', true);
?&gt;

&lt;h1&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;

&lt;div class=&quot;photometa&quot;&gt;&lt;span class=&quot;photographername&quot;&gt;&lt;?php echo $photographer; ?&gt;&lt;/span&gt; // &lt;a href=&quot;&lt;?php echo $photographerurl ?&gt;&quot; target=&quot;_blank&quot; class=&quot;photographerurl&quot;&gt;&lt;?php echo $photographerurl ?&gt;&lt;/a&gt;&lt;/div&gt;

                        &lt;div class=&quot;entry-attachment&quot;&gt;
&lt;?php if ( wp_attachment_is_image( $post-&gt;id ) ) : $att_image = wp_get_attachment_image_src( $post-&gt;id, &quot;full&quot;); ?&gt;
                        &lt;p class=&quot;attachment&quot;&gt;&lt;a href=&quot;&lt;?php echo wp_get_attachment_url($post-&gt;id); ?&gt;&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot; rel=&quot;attachment&quot;&gt;&lt;img src=&quot;&lt;?php echo $att_image[0];?&gt;&quot; width=&quot;&lt;?php echo $att_image[1];?&gt;&quot; height=&quot;&lt;?php echo $att_image[2];?&gt;&quot;  class=&quot;attachment-medium&quot; alt=&quot;&lt;?php $post-&gt;post_excerpt; ?&gt;&quot; /&gt;&lt;/a&gt;
                        &lt;/p&gt;
&lt;?php else : ?&gt;
                        &lt;a href=&quot;&lt;?php echo wp_get_attachment_url($post-&gt;ID) ?&gt;&quot; title=&quot;&lt;?php echo wp_specialchars( get_the_title($post-&gt;ID), 1 ) ?&gt;&quot; rel=&quot;attachment&quot;&gt;&lt;?php echo basename($post-&gt;guid) ?&gt;&lt;/a&gt;
&lt;?php endif; ?&gt;
                        &lt;/div&gt;

&lt;?php endwhile; ?&gt;

&lt;?php endif; ?&gt;
</pre>
<p>The code above simply displays the Image Title. Below it, it will display Author&#8217;s name and URL which we added as additional fields in our previous article. Then it looks for the image and displays the full size. You can customize it to show any other size if you have <a href="http://www.wpbeginner.com/wp-tutorials/how-to-create-additional-image-sizes-in-wordpress/" title="Additional Image Sizes in WordPress">additional image sizes</a>.</p>
<p><strong>Final Outcome:</strong></p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/single-attachment-ex.gif" alt="Single Attachment Example" title="Single Attachment Example" width="520" height="300" class="alignnone size-full wp-image-5215" /></p>
<p>Now that we have covered all three main aspects of this gallery that we were going to create, in the next article, we will show you how it looks when all things are pieced together. This way, you can use WordPress&#8217;s built-in mechanism to create a full-featured gallery with albums. No extra plugins required.</p>
<p><strong>Resource:</strong><br />
<a href="http://codex.wordpress.org/Template_Hierarchy#Attachment_display" title="Template Hierarchy WordPress Codex" target="_blank">Template Hierarchy Codex</a></p>
<p><a href="http://www.wpbeginner.com/wp-themes/how-to-create-a-custom-single-attachments-template-in-wordpress/">How to Create a Custom Single Attachments Template in WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YqkXheaivHM:W-C-j16cfI0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YqkXheaivHM:W-C-j16cfI0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=YqkXheaivHM:W-C-j16cfI0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YqkXheaivHM:W-C-j16cfI0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YqkXheaivHM:W-C-j16cfI0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YqkXheaivHM:W-C-j16cfI0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=YqkXheaivHM:W-C-j16cfI0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YqkXheaivHM:W-C-j16cfI0: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/YqkXheaivHM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-themes/how-to-create-a-custom-single-attachments-template-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/single-attachment-ex-150x150.gif" />
		<media:content url="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/single-attachment-ex.gif" medium="image">
			<media:title type="html">Single Attachment Example</media:title>
			<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/single-attachment-ex-150x150.gif" />
		</media:content>
	<feedburner:origLink>http://www.wpbeginner.com/wp-themes/how-to-create-a-custom-single-attachments-template-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>How to Add Additional Fields to the WordPress Media Uploader</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/xachNKI6YX4/</link>
		<comments>http://www.wpbeginner.com/wp-tutorials/how-to-add-additional-fields-to-the-wordpress-media-uploader/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 16:26:21 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[add meta data to wordpress attachments]]></category>
		<category><![CDATA[adding fields to the attachment]]></category>
		<category><![CDATA[adding fields to the media gallery]]></category>
		<category><![CDATA[additional fields to the media uploader]]></category>
		<category><![CDATA[how to add additional fields to the wordpress media uploader]]></category>
		<category><![CDATA[how to add fields to the wordpress media uploader]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5205</guid>
		<description><![CDATA[<p>While working on a project where we created a very cool gallery powered totally by WordPress attachments and a custom post type, we found a need to add additional fields to the WordPress media uploader. These additional fields allowed us to give each photographer credit by adding photographer name, and their URL on each image page. WordPress stores images as posts in the attachment post type, so adding meta data is just like adding custom fields. Because the WordPress attachments...</p><p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-additional-fields-to-the-wordpress-media-uploader/">How to Add Additional Fields to the WordPress Media Uploader</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>]]></description>
			<content:encoded><![CDATA[<p>While working on a project where we created a very cool gallery powered totally by WordPress attachments and a custom post type, we found a need to add additional fields to the WordPress media uploader. These additional fields allowed us to give each photographer credit by adding photographer name, and their URL on each image page. WordPress stores images as posts in the attachment post type, so adding meta data is just like adding custom fields. Because the WordPress attachments does not have a custom fields UI, we have to add a custom fields to the media uploader in order to collect the meta data. In this article, we will show you how to add additional fields to the WordPress Media Uploader. </p>
<p>We will be using the following filters to make the change: <em>attachment_fields_to_edit</em> and <em>attachment_fields_to_save</em></p>
<p>For a project like this, we highly recommend that you create a <a href="http://www.wpbeginner.com/beginners-guide/what-why-and-how-tos-of-creating-a-site-specific-wordpress-plugin/" title="Site Specific WordPress Plugin">site-specific plugin</a> and add the following code. However, you can still add the codes in your theme&#8217;s functions.php file to make it work.</p>
<pre class="brush: php; title: ; notranslate">
/**
 * Add Photographer Name and URL fields to media uploader
 *
 * @param $form_fields array, fields to include in attachment form
 * @param $post object, attachment record in database
 * @return $form_fields, modified form fields
 */

function be_attachment_field_credit( $form_fields, $post ) {
	$form_fields['be-photographer-name'] = array(
		'label' =&gt; 'Photographer Name',
		'input' =&gt; 'text',
		'value' =&gt; get_post_meta( $post-&gt;ID, 'be_photographer_name', true ),
		'helps' =&gt; 'If provided, photo credit will be displayed',
	);

	$form_fields['be-photographer-url'] = array(
		'label' =&gt; 'Photographer URL',
		'input' =&gt; 'text',
		'value' =&gt; get_post_meta( $post-&gt;ID, 'be_photographer_url', true ),
		'helps' =&gt; 'Add Photographer URL',
	);

	return $form_fields;
}

add_filter( 'attachment_fields_to_edit', 'be_attachment_field_credit', 10, 2 );

/**
 * Save values of Photographer Name and URL in media uploader
 *
 * @param $post array, the post data for database
 * @param $attachment array, attachment fields from $_POST form
 * @return $post array, modified post data
 */

function be_attachment_field_credit_save( $post, $attachment ) {
	if( isset( $attachment['be-photographer-name'] ) )
		update_post_meta( $post['ID'], 'be_photographer_name', $attachment['be-photographer-name'] );

	if( isset( $attachment['be-photographer-url'] ) )
update_post_meta( $post['ID'], 'be_photographer_url', esc_url( $attachment['be-photographer-url'] ) );

	return $post;
}

add_filter( 'attachment_fields_to_save', 'be_attachment_field_credit_save', 10, 2 );
?&gt;
</pre>
<p>The code above will add two text fields to the Media Uploader called Photographer Name and Photographer URL. You can see that in the screenshot below:</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/mediauploaderfields.gif" alt="Additional Fields in the Media Uploader" title="Additional Fields in the Media Uploader" width="520" height="245" class="alignnone size-full wp-image-5206" /> </p>
<p><strong>Explanation of the code:</strong> In the first function, we are simply using an array to specify the field&#8217;s label, input type, value, and help text. The second function is checking to see if a value has been set for those fields. IF the value is set, then the post metadata is updated. </p>
<p>If you want to display the fields in your attachments template, then simply paste the following codes inside the loop:</p>
<pre class="brush: php; title: ; notranslate">echo get_post_meta($post-&gt;ID, 'be_photographer_url', true);</pre>
<p>If you want to display the fields for your featured image in your archive template or any other template, then simply use:</p>
<pre class="brush: php; title: ; notranslate">echo get_post_meta(get_post_thumbnail_id(), 'be_photographer_url', true);</pre>
<p>We hope that you enjoyed this article. For those who don&#8217;t know how to create an attachment&#8217;s template, don&#8217;t worry. In the next article, we will cover how to create an attachment&#8217;s template in WordPress.</p>
<p>Hat Tip to <a href="http://www.billerickson.net/wordpress-add-custom-fields-media-gallery/" title="Bill Erickson" target="_blank" rel="nofollow">Bill Erickson</a> for showing us how to do this.</p>
<p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-additional-fields-to-the-wordpress-media-uploader/">How to Add Additional Fields to the WordPress Media Uploader</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=xachNKI6YX4:am6kYCJoMPM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=xachNKI6YX4:am6kYCJoMPM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=xachNKI6YX4:am6kYCJoMPM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=xachNKI6YX4:am6kYCJoMPM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=xachNKI6YX4:am6kYCJoMPM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=xachNKI6YX4:am6kYCJoMPM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=xachNKI6YX4:am6kYCJoMPM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=xachNKI6YX4:am6kYCJoMPM: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/xachNKI6YX4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/how-to-add-additional-fields-to-the-wordpress-media-uploader/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/mediauploaderfields-150x150.gif" />
		<media:content url="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/mediauploaderfields.gif" medium="image">
			<media:title type="html">Additional Fields in the Media Uploader</media:title>
			<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/mediauploaderfields-150x150.gif" />
		</media:content>
	<feedburner:origLink>http://www.wpbeginner.com/wp-tutorials/how-to-add-additional-fields-to-the-wordpress-media-uploader/</feedburner:origLink></item>
		<item>
		<title>How to Get All Post Attachments in WordPress Except for Featured Image</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/YVIKz6iKgdE/</link>
		<comments>http://www.wpbeginner.com/wp-themes/how-to-get-all-post-attachments-in-wordpress-except-for-featured-image/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 15:59:32 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[get all post attachments in wordpress]]></category>
		<category><![CDATA[how to get all post attachments except for featured image in wordpress]]></category>
		<category><![CDATA[how to get all post attachments in wordpress]]></category>
		<category><![CDATA[how to pull all post attachments in wordpress]]></category>
		<category><![CDATA[how to pull all post attachments in wordpress except for featured image]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5173</guid>
		<description><![CDATA[<p>Recently while working on a custom project for a client, we had to get all post attachments from a custom post type and display them at one place. Because we were creating a grid display, we had each post&#8217;s featured image serving the purpose of a separator. This is why when getting all post attachments, we needed to exclude the featured image, so it doesn&#8217;t show up twice. In this article, we will show you how to get all post...</p><p><a href="http://www.wpbeginner.com/wp-themes/how-to-get-all-post-attachments-in-wordpress-except-for-featured-image/">How to Get All Post Attachments in WordPress Except for Featured Image</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>]]></description>
			<content:encoded><![CDATA[<p>Recently while working on a custom project for a client, we had to get all post attachments from a custom post type and display them at one place. Because we were creating a grid display, we had each post&#8217;s featured image serving the purpose of a separator. This is why when getting all post attachments, we needed to exclude the featured image, so it doesn&#8217;t show up twice. In this article, we will show you how to get all post attachments in WordPress except for the featured image.</p>
<p>All you have to do is paste the following code inside a loop.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php if ( $post-&gt;post_type == 'data-design' &amp;&amp; $post-&gt;post_status == 'publish' ) {
		$attachments = get_posts( array(
			'post_type' =&gt; 'attachment',
			'posts_per_page' =&gt; -1,
			'post_parent' =&gt; $post-&gt;ID,
			'exclude'     =&gt; get_post_thumbnail_id()
		) );

		if ( $attachments ) {
			foreach ( $attachments as $attachment ) {
				$class = &quot;post-attachment mime-&quot; . sanitize_title( $attachment-&gt;post_mime_type );
				$thumbimg = wp_get_attachment_link( $attachment-&gt;ID, 'thumbnail-size', true );
				echo '&lt;li class=&quot;' . $class . ' data-design-thumbnail&quot;&gt;' . $thumbimg . '&lt;/li&gt;';
			}

		}
	}
?&gt;
</pre>
<p>The code above first checks if the post type is data-design and the post status is published. You may not need the first conditional depending on what you are trying to do. Then we simply run the get_posts query. Everything is pretty self explanatory there. The key that we must highlight is the exclude feature. That line is making sure that featured image does not show up. If you take that line away, then the featured image will show up. After specifying all the parameters, we simply specify what to do when each attachment is pulled. We are pulling attachment type for the class variable. Then the $thumbimg variable is simply using wp_get_attachment_link to pull the image at a specific thumbnail size, and it also hyperlinks the image to the single attachment pages. In the final step, we simply echo it.</p>
<p>We ran this code inside a loop with a separate call for featured image which links to the individual post. Final outcome looked something like this:</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/attachmentgrid.gif" alt="Attachment Grid" title="Attachment Grid" width="520" height="222" class="alignnone size-full wp-image-5174" /></p>
<p>Each featured image served as an album identifying image which you can see. The grey spots were filled with the attachments for the post. We hope that this would help those who are looking to push WordPress beyond a blogging platform.</p>
<p><a href="http://www.wpbeginner.com/wp-themes/how-to-get-all-post-attachments-in-wordpress-except-for-featured-image/">How to Get All Post Attachments in WordPress Except for Featured Image</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YVIKz6iKgdE:bEQsogt8e-s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YVIKz6iKgdE:bEQsogt8e-s:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=YVIKz6iKgdE:bEQsogt8e-s:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YVIKz6iKgdE:bEQsogt8e-s:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YVIKz6iKgdE:bEQsogt8e-s:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YVIKz6iKgdE:bEQsogt8e-s:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=YVIKz6iKgdE:bEQsogt8e-s:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YVIKz6iKgdE:bEQsogt8e-s: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/YVIKz6iKgdE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-themes/how-to-get-all-post-attachments-in-wordpress-except-for-featured-image/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/attachmentgrid-150x150.gif" />
		<media:content url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/attachmentgrid.gif" medium="image">
			<media:title type="html">Attachment Grid</media:title>
			<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/attachmentgrid-150x150.gif" />
		</media:content>
	<feedburner:origLink>http://www.wpbeginner.com/wp-themes/how-to-get-all-post-attachments-in-wordpress-except-for-featured-image/</feedburner:origLink></item>
		<item>
		<title>How to Add SlideShare to WordPress oEmbed without a Plugin</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/AHBIFqnwTR8/</link>
		<comments>http://www.wpbeginner.com/wp-tutorials/how-to-add-slideshare-to-wordpress-oembed-without-a-plugin/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 11:51:03 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[add slideshare to wordpress oembed]]></category>
		<category><![CDATA[add slideshare to wordpress oembed without a plugin]]></category>
		<category><![CDATA[adding slideshare to wordpress oembed]]></category>
		<category><![CDATA[how to add slideshare to wordpress oembed]]></category>
		<category><![CDATA[how to add slideshare to wordpress oembed without a plugin]]></category>
		<category><![CDATA[slideshare oembed wordpress]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5186</guid>
		<description><![CDATA[<p>If you have ever spoken in front of an audience, then you probably know what slideshare is. If you haven&#8217;t, then slideshare is a place where people upload their presentation slides, so others can see it. Very often these speakers also embed their slides in their blogs. You can either use the slideshare embed code which works fine, or you can make it much easier for yourself by simply adding it to WordPress oEmbed. This would allow you to simply...</p><p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-slideshare-to-wordpress-oembed-without-a-plugin/">How to Add SlideShare to WordPress oEmbed without a Plugin</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>]]></description>
			<content:encoded><![CDATA[<p>If you have ever spoken in front of an audience, then you probably know what slideshare is. If you haven&#8217;t, then slideshare is a place where people upload their presentation slides, so others can see it. Very often these speakers also embed their slides in their blogs. You can either use the slideshare embed code which works fine, or you can make it much easier for yourself by simply adding it to WordPress oEmbed. This would allow you to simply paste a URL of your slideshare presentation, and it will auto-embed just like the Youtube videos. In this article, we will show you how to add slideshare to WordPress oEmbed without a plugin.</p>
<p>Open your theme&#8217;s functions.php file or a site plugin and simply paste this code:</p>
<pre class="brush: php; title: ; notranslate">// Add Slideshare oEmbed
function add_oembed_slideshare(){
wp_oembed_add_provider( 'http://www.slideshare.net/*', 'http://api.embed.ly/v1/api/oembed');
}
add_action('init','add_oembed_slideshare');</pre>
<p>Thanks to @tammyhart for sharing the snippet with us.</p>
<p>P.S. want to check out all the presentations that we have given? Then visit <a href="http://www.slideshare.net/wpbeginner" title="WPBeginner Slides" target="_blank" rel="nofollow">WPBeginner&#8217;s Slideshare</a></p>
<p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-slideshare-to-wordpress-oembed-without-a-plugin/">How to Add SlideShare to WordPress oEmbed without a Plugin</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=AHBIFqnwTR8:7GN8LftA2TI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=AHBIFqnwTR8:7GN8LftA2TI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=AHBIFqnwTR8:7GN8LftA2TI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=AHBIFqnwTR8:7GN8LftA2TI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=AHBIFqnwTR8:7GN8LftA2TI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=AHBIFqnwTR8:7GN8LftA2TI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=AHBIFqnwTR8:7GN8LftA2TI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=AHBIFqnwTR8:7GN8LftA2TI: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/AHBIFqnwTR8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/how-to-add-slideshare-to-wordpress-oembed-without-a-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
	<feedburner:origLink>http://www.wpbeginner.com/wp-tutorials/how-to-add-slideshare-to-wordpress-oembed-without-a-plugin/</feedburner:origLink></item>
		<item>
		<title>How to Prevent Youtube oEmbed from Overriding your WordPress Content</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/zcySV9OZRdk/</link>
		<comments>http://www.wpbeginner.com/wp-tutorials/how-to-prevent-youtube-oembed-from-overriding-your-wordpress-content/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 11:34:18 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[how to fix youtube overriding wordpress]]></category>
		<category><![CDATA[youtube oembed]]></category>
		<category><![CDATA[youtube overriding wordpress]]></category>
		<category><![CDATA[youtube transparency]]></category>
		<category><![CDATA[youtube wmode]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5168</guid>
		<description><![CDATA[<p>Have you ever been to a site where you notice that media elements such as youtube videos override other content? This can happen if you have drop down menus, floating bars, lightbox popup etc. Well as designers, this get really frustrating for us. In the past, you would have to add ?wmode=transparent to each video embed code, but with WordPress 2.9, embedding videos have gotten much easier. All you have to do is paste the URL of a video, and...</p><p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-prevent-youtube-oembed-from-overriding-your-wordpress-content/">How to Prevent Youtube oEmbed from Overriding your WordPress Content</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>]]></description>
			<content:encoded><![CDATA[<p>Have you ever been to a site where you notice that media elements such as youtube videos override other content? This can happen if you have drop down menus, floating bars, lightbox popup etc. Well as designers, this get really frustrating for us. In the past, you would have to add ?wmode=transparent to each video embed code, but with WordPress 2.9, <a href="http://www.wpbeginner.com/beginners-guide/how-to-easily-embed-videos-in-wordpress-blog-posts/" title="Embedding Videos in WordPress">embedding videos</a> have gotten much easier. All you have to do is paste the URL of a video, and it will auto-embed. However, this makes it harder for us to add the ?wmode=transparent tag to each video. Well, you don&#8217;t have to worry. In this article, we will share with you a snippet that prevents Youtube and any other media files that are embedded via oEmbed from overriding your WordPress content. </p>
<p><strong>Example:</strong></p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/youtubeoembedissue.gif" alt="Youtube oEmbed issue" title="Youtube oEmbed issue" width="520" height="341" class="alignnone size-full wp-image-5170" /></p>
<p>All you have to do is open your theme&#8217;s functions.php file or better yet your <a href="http://www.wpbeginner.com/beginners-guide/what-why-and-how-tos-of-creating-a-site-specific-wordpress-plugin/" title="Site Specific Plugin for WordPress">site&#8217;s plugin file</a> and paste the following code:</p>
<pre class="brush: php; title: ; notranslate">function add_video_wmode_transparent($html, $url, $attr) {

if ( strpos( $html, &quot;&lt;embed src=&quot; ) !== false )
   { return str_replace('&lt;/param&gt;&lt;embed', '&lt;/param&gt;&lt;param name=&quot;wmode&quot; value=&quot;opaque&quot;&gt;&lt;/param&gt;&lt;embed wmode=&quot;opaque&quot; ', $html); }
elseif ( strpos ( $html, 'feature=oembed' ) !== false )
   { return str_replace( 'feature=oembed', 'feature=oembed&amp;wmode=opaque', $html ); }
else
   { return $html; }
}
add_filter( 'embed_oembed_html', 'add_video_wmode_transparent', 10, 3);</pre>
<p><a href="http://mehigh.biz/wordpress/adding-wmode-transparent-to-wordpress-3-media-embeds.html" title="Source" target="_blank" rel="nofollow">Source</a></p>
<p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-prevent-youtube-oembed-from-overriding-your-wordpress-content/">How to Prevent Youtube oEmbed from Overriding your WordPress Content</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=zcySV9OZRdk:H_8An7fwBgM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=zcySV9OZRdk:H_8An7fwBgM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=zcySV9OZRdk:H_8An7fwBgM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=zcySV9OZRdk:H_8An7fwBgM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=zcySV9OZRdk:H_8An7fwBgM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=zcySV9OZRdk:H_8An7fwBgM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=zcySV9OZRdk:H_8An7fwBgM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=zcySV9OZRdk:H_8An7fwBgM: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/zcySV9OZRdk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/how-to-prevent-youtube-oembed-from-overriding-your-wordpress-content/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/youtubeoembedissue-150x150.gif" />
		<media:content url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/youtubeoembedissue.gif" medium="image">
			<media:title type="html">Youtube oEmbed issue</media:title>
			<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/youtubeoembedissue-150x150.gif" />
		</media:content>
	<feedburner:origLink>http://www.wpbeginner.com/wp-tutorials/how-to-prevent-youtube-oembed-from-overriding-your-wordpress-content/</feedburner:origLink></item>
		<item>
		<title>How to Add Google+ “Add to Circles” Badge in your WordPress Site</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/n79x2Wqrsi0/</link>
		<comments>http://www.wpbeginner.com/wp-tutorials/how-to-add-google-add-to-circles-badge-in-your-wordpress-site/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 14:14:41 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[google+ add to circle widget]]></category>
		<category><![CDATA[google+ add to circles badge]]></category>
		<category><![CDATA[google+ badge]]></category>
		<category><![CDATA[google+ widget like mashable]]></category>
		<category><![CDATA[how to add google+ add to circles widget in wordpress]]></category>
		<category><![CDATA[how to add google+ badge in wordpress]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5176</guid>
		<description><![CDATA[<p>Recently, one of our users asked us how they can add the Google+ &#8220;Add to Circles&#8221; Badge in their WordPress site. In the past, we have shown you how to add the Google +1 Button your WordPress Posts. In this article, we will show you how to add the Google+ &#8220;Add to Circles&#8221; Badge in your WordPress site. Preview of how a Google+ Badge looks like: Before we begin, you should note that this is only for Google+ Pages not...</p><p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-google-add-to-circles-badge-in-your-wordpress-site/">How to Add Google+ &#8220;Add to Circles&#8221; Badge in your WordPress Site</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>]]></description>
			<content:encoded><![CDATA[<p>Recently, one of our users asked us how they can add the Google+ &#8220;Add to Circles&#8221; Badge in their WordPress site. In the past, we have shown you <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 Posts">how to add the Google +1 Button your WordPress Posts</a>. In this article, we will show you how to add the Google+ &#8220;Add to Circles&#8221; Badge in your WordPress site.</p>
<p>Preview of how a Google+ Badge looks like:</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/googleplusbadges.gif" alt="Google+ Add to Circles Badge" title="Google+ Add to Circles Badge" width="520" height="109" class="alignnone size-full wp-image-5177" /></p>
<p>Before we begin, you should note that this is only for Google+ Pages not profiles. Example of <a href="https://plus.google.com/101634180904808003404/" title="WPBeginner on Google+" target="_blank">Google+ Page</a>. Example of <a href="https://plus.google.com/101623299936375408403/" title="Syed Balkhi on Google+" target="_blank">Google+ Profile</a>.</p>
<p>First thing you need to do is put the following code in your <strong>&lt;head&gt;</strong> section of your site which you can modify by editing the <strong>header.php</strong> file of your theme.</p>
<pre class="brush: php; title: ; notranslate">
&lt;link href=&quot;https://plus.google.com/{plusPageID}&quot; rel=&quot;publisher&quot; /&gt;&lt;script type=&quot;text/javascript&quot;&gt;
(function()
{var po = document.createElement(&quot;script&quot;);
po.type = &quot;text/javascript&quot;; po.async = true;po.src = &quot;https://apis.google.com/js/plusone.js&quot;;
var s = document.getElementsByTagName(&quot;script&quot;)[0];
s.parentNode.insertBefore(po, s);
})();&lt;/script&gt;
</pre>
<p>Don&#8217;t forget to replace the {plusPageID} with your Google+ Page ID. Your Page ID is a 21-digit string at the end of the URL. For example if your page URL is: https://plus.google.com/<strong>101634180904808003404</strong>/ then the numbers in bold is your Page ID.</p>
<p>Once you have added the header code, then all you have to do is place the following code wherever you want the Google+ Add to Circles widget to show. Most users like to display this in their sidebar, so you can either modify your <strong>sidebar.php</strong> file, or simply add it in a text widget area.</p>
<pre class="brush: php; title: ; notranslate">&lt;g:plus href=&quot;https://plus.google.com/{plusPageID}&quot; size=&quot;badge&quot;&gt;&lt;/g:plus&gt;</pre>
<p>For the Small badge, simply use this code:</p>
<pre class="brush: php; title: ; notranslate">&lt;g:plus href=&quot;https://plus.google.com/101634180904808003404&quot; size=&quot;smallbadge&quot;&gt;&lt;/g:plus&gt;</pre>
<p>We hope that this article has helped you. If it did, then please consider adding <a href="https://plus.google.com/101634180904808003404/" title="WPBeginner on Google+" target="_blank">WPBeginner in your Circle</a>.</p>
<p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-google-add-to-circles-badge-in-your-wordpress-site/">How to Add Google+ &#8220;Add to Circles&#8221; Badge in your WordPress Site</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=n79x2Wqrsi0:l74DR3N6O6c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=n79x2Wqrsi0:l74DR3N6O6c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=n79x2Wqrsi0:l74DR3N6O6c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=n79x2Wqrsi0:l74DR3N6O6c:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=n79x2Wqrsi0:l74DR3N6O6c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=n79x2Wqrsi0:l74DR3N6O6c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=n79x2Wqrsi0:l74DR3N6O6c:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=n79x2Wqrsi0:l74DR3N6O6c: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/n79x2Wqrsi0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/how-to-add-google-add-to-circles-badge-in-your-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/googleplusbadges-150x109.gif" />
		<media:content url="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/googleplusbadges.gif" medium="image">
			<media:title type="html">Google+ Add to Circles Badge</media:title>
			<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/02/googleplusbadges-150x109.gif" />
		</media:content>
	<feedburner:origLink>http://www.wpbeginner.com/wp-tutorials/how-to-add-google-add-to-circles-badge-in-your-wordpress-site/</feedburner:origLink></item>
		<item>
		<title>How to Show Your Latest Pinterest Pins in WordPress Sidebar Widgets</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/eSHnK2jTS7g/</link>
		<comments>http://www.wpbeginner.com/plugins/how-to-show-your-latest-pinterest-pins-in-wordpress-sidebar-widgets/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 13:23:12 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[display latest pinterest pins in wordpress]]></category>
		<category><![CDATA[how to add latest pinterest pins in wordpress sidebar]]></category>
		<category><![CDATA[how to show your latest pinterest pins in wordpress]]></category>
		<category><![CDATA[pinterest]]></category>
		<category><![CDATA[pinterest rss widget for wordpress]]></category>
		<category><![CDATA[showing latest pinterest pins in wordpress]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5160</guid>
		<description><![CDATA[<p>Few days ago, we showed you how to add the Pinterest &#8220;Pin It&#8221; button in your WordPress blog. We are seeing more and more people joining Pinterest every day. Some of you might even want to show your latest pins in your sidebar. Well, in this article, we will show you an easy way to displaying your latest pinterest pins in your sidebar or any other dynamic widgets area. First thing you need to do is install and activate the...</p><p><a href="http://www.wpbeginner.com/plugins/how-to-show-your-latest-pinterest-pins-in-wordpress-sidebar-widgets/">How to Show Your Latest Pinterest Pins in WordPress Sidebar Widgets</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>]]></description>
			<content:encoded><![CDATA[<p>Few days ago, we showed you <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-pinterest-pin-it-button-in-your-wordpress-blog/" title="How to Add the Pinterest Pin It Button in WordPress Blogs">how to add the Pinterest &#8220;Pin It&#8221; button in your WordPress blog</a>. We are seeing more and more people joining <a href="http://pinterest.com/syedbalkhi" title="Pinterest" target="_blank">Pinterest</a> every day. Some of you might even want to show your latest pins in your sidebar. Well, in this article, we will show you an easy way to displaying your latest pinterest pins in your sidebar or any other dynamic widgets area. </p>
<p>First thing you need to do is install and activate the <a href="http://wordpress.org/extend/plugins/pinterest-rss-widget/" title="Pinterest RSS Widget" target="_blank" rel="nofollow">Pinterest RSS Widget plugin</a>. After installation, simply go to Appearance &raquo; Widgets. There will be a widget called  Pinterest RSS Widget. Drag it in the appropriate widget area, and configure the settings.</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/pinterestrsswidget.gif" alt="Pinterest RSS Widget for WordPress" title="Pinterest RSS Widget for WordPress" width="520" height="480" class="alignnone size-full wp-image-5161" /></p>
<p>You can customize the size of your thumbnails. You can also choose to display the titles below the images or not. </p>
<p>If you want to show the Pinterest Pins on a post or a page, then you can do that using the following shortcode:</p>
<p>[prw username="syedbalkhi" maxfeeds="10" divname="myList" printtext="0" target="newwindow" useenclosures="yes" thumbwidth="100" thumbheight="100" showfollow="medium"]</p>
<p>If you want to show the Pinterest Pins in your theme by hard coding it, you can also do that using this plugin. Simply add the following codes wherever you want to display the latest pins:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php get_pins_feed_list($username, $maxfeeds, $divname, $printtext, $target, $useenclosures, $thumbwidth, $thumbheight, $showfollow); ?&gt;
</pre>
<p>The parameters are:</p>
<ul>
<li><strong>username</strong> is the Pinterest username you wish to display Pins from (mandatory)</li>
<li><strong>maxfeeds</strong> is the maximum number of Pins to display (optional, default = 25)</li>
<li><strong>divname</strong> is a name suffix for the list class. &#8220;myList&#8221; will become &#8220;pins-feed-myList&#8221; (optional)</li>
<li><strong>printtext</strong> must be 1 if you want the first few words of the Pin description to be printed below the thumbnail (optional)</li>
<li><strong>target</strong> is &#8220;samewindow&#8221; or &#8220;newwindow&#8221;, depending on where you want links to open (optional, default = samewindow)</li>
<li><strong>useenclosures</strong> is &#8220;yes&#8221; or &#8220;no&#8221; (optional, default = yes). Use this if you don&#8217;t want to use the tag in the feed and force the script to find an image
<li>link in the feed item description.</li>
<li><strong>thumbwidth</strong> is a number that will set the width in pixels of the Pin&#8217;s thumbnail (optional, default = 150)</li>
<li><strong>thumbheight</strong> is a number that will set the height in pixels of the Pin&#8217;s thumbnail (optional, default = 150)</li>
<li><strong>showfollow</strong> is &#8220;large&#8221;, &#8220;medium&#8221;, &#8220;small&#8221;, &#8220;tiny&#8221; or &#8220;none&#8221; (optional, default = none). Use this if you want to show the &#8220;Follow Me On Pinterest&#8221; button below the thumbnails. Select the size that best fits the space allowed (&#8220;large&#8221; is 156&#215;26, &#8220;medium&#8221; is 78&#215;26, &#8220;small&#8221; is the square 61&#215;61 logo, and &#8220;tiny&#8221; is the 16&#215;16 logo.)</li>
</ul>
<p>When installing this plugin, we ran into the issue of images not showing up. Thankfully, it is a known issue and the author has already covered it into the FAQ&#8217;s section of the plugin. If your images are not showing up, then below are the possible solutions:</p>
<ul>
<li>TimThumb requires the GD library, which is available on any host sever with PHP 4.3+ installed. Make sure your host has this installed (most do).</li>
<li>Once installed and in-use, TimThumb will automatically create a /prw_tmp/ subfolder in your/ wp-content/uploads/ directory with proper write-permissions. If your host server doesn&#8217;t allow this by default, be sure to manually create the /prw_tmp/ subfolder in your/ wp-content/uploads/ directory and set the /prw_tmp/ folder permissions to 755. If this still doesn&#8217;t work, try setting the /cache/ folder permissions to 777.</li>
<li>Known issue with timthumb.php on <a href="http://www.wpbeginner.com/refer/hostgator" style="" target="_blank" rel="nofollow" onmouseover="self.status='Host Gator - Best Web Host for WordPress';return true;" onmouseout="self.status=''">Hostgator</a>: If your website is hosted on <a href="http://www.wpbeginner.com/refer/hostgator" style="" target="_blank" rel="nofollow" onmouseover="self.status='Host Gator - Best Web Host for WordPress';return true;" onmouseout="self.status=''">Hostgator</a>, you may need to contact <a href="http://www.wpbeginner.com/refer/hostgator" style="" target="_blank" rel="nofollow" onmouseover="self.status='Host Gator - Best Web Host for WordPress';return true;" onmouseout="self.status=''">HostGator</a> to request &#8220;mod_security whitelisting&#8221;. More info here: <a href="http://support.hostgator.com/articles/specialized-help/technical/timthumb-basics" title="TimThumb Hostgator" target="_blank" rel="nofollow">http://support.hostgator.com/articles/specialized-help/technical/timthumb-basics</a></li>
</ul>
<p>Download <a href="http://wordpress.org/extend/plugins/pinterest-rss-widget/" title="Pinterest RSS Widget" target="_blank" rel="nofollow">Pinterest RSS Widget plugin</a></p>
<p><strong>P.S. Don&#8217;t forget to <a href="http://pinterest.com/syedbalkhi" title="Pinterest" target="_blank">follow Syed on Pinterest</a></strong></p>
<p><a href="http://www.wpbeginner.com/plugins/how-to-show-your-latest-pinterest-pins-in-wordpress-sidebar-widgets/">How to Show Your Latest Pinterest Pins in WordPress Sidebar Widgets</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=eSHnK2jTS7g:R322iTIZDrw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=eSHnK2jTS7g:R322iTIZDrw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=eSHnK2jTS7g:R322iTIZDrw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=eSHnK2jTS7g:R322iTIZDrw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=eSHnK2jTS7g:R322iTIZDrw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=eSHnK2jTS7g:R322iTIZDrw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=eSHnK2jTS7g:R322iTIZDrw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=eSHnK2jTS7g:R322iTIZDrw: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/eSHnK2jTS7g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/plugins/how-to-show-your-latest-pinterest-pins-in-wordpress-sidebar-widgets/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/pinterestrsswidget-150x150.gif" />
		<media:content url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/pinterestrsswidget.gif" medium="image">
			<media:title type="html">Pinterest RSS Widget for WordPress</media:title>
			<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/pinterestrsswidget-150x150.gif" />
		</media:content>
	<feedburner:origLink>http://www.wpbeginner.com/plugins/how-to-show-your-latest-pinterest-pins-in-wordpress-sidebar-widgets/</feedburner:origLink></item>
		<item>
		<title>How to Show Weather Forecast in Your WordPress</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/3xL3Yb-CbPQ/</link>
		<comments>http://www.wpbeginner.com/plugins/how-to-show-weather-forecast-in-your-wordpress/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 18:31:19 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[how to auto-detect user location to show weather in wordpress]]></category>
		<category><![CDATA[how to display weather in wordpress]]></category>
		<category><![CDATA[how to show weather forecast in wordpress]]></category>
		<category><![CDATA[weather forecast in wordpress]]></category>
		<category><![CDATA[weather in wordpress]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5151</guid>
		<description><![CDATA[<p>Recently one of our users asked us if there was an easy way for her to display local weather on her blog. After doing some research, we found that there were tons of plugins available that will let you display weather forecast in WordPress. In this article, we will share two plugins that will let you show daily weather forecast in your WordPress blog. WP Google Weather The reason why we picked this plugin was its ease of installation. Unlike...</p><p><a href="http://www.wpbeginner.com/plugins/how-to-show-weather-forecast-in-your-wordpress/">How to Show Weather Forecast in Your WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>]]></description>
			<content:encoded><![CDATA[<p>Recently one of our users asked us if there was an easy way for her to display local weather on her blog. After doing some research, we found that there were tons of plugins available that will let you display weather forecast in WordPress. In this article, we will share two plugins that will let you show daily weather forecast in your WordPress blog.</p>
<h4><a href="http://wordpress.org/extend/plugins/wp-google-weather/" title="WP Google Weather" target="_blank" rel="nofollow">WP Google Weather</a></h4>
<p>The reason why we picked this plugin was its ease of installation. Unlike many other plugins, this plugin does not require you to signup with a third-party service to get an API. Also, this plugin does not require any link backs on the front end.</p>
<p>All you have to do is install and activate <a href="http://wordpress.org/extend/plugins/wp-google-weather/" title="WP Google Weather" target="_blank" rel="nofollow">WP Google Weather</a>. Then go to Appearance &raquo; Widgets. Then simply drag the WP Google Weather widget into the Sidebar. Enter the title of the widget, location, which language the display should be in, which unit the display should be in, and whether you want to show just today&#8217;s weather or the 3 day forecast. </p>
<p>Here is how the settings and the front-end display looks:</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/wp-google-weather.gif" alt="WP Google Weather" title="WP Google Weather" width="520" height="312" class="alignnone size-full wp-image-5152" /> </p>
<p>The front-end display is not the best however it can be customized to your liking. All you have to do is edit your stylesheet.</p>
<h4><a href="http://wordpress.org/extend/plugins/weather-and-weather-forecast-widget/" title="Weather and Weather Forecast Widget" target="_blank" rel="nofollow">Weather and Weather Forecast Widget</a></h4>
<p>This plugin comes with a lot of options. It allows you to use the services like Wunderground and World Weather Online API to get your data. This plugin also has the auto-detect option for location, but you need to signup for another API service for that. The biggest downside in our eyes is that it is mandatory for you to display the link to the provider otherwise your API can be terminated. All those companies do have monthly paid API options where you can remove their link back.</p>
<p>First thing you need to do is install and activate <a href="http://wordpress.org/extend/plugins/weather-and-weather-forecast-widget/" title="Weather and Weather Forecast Widget" target="_blank" rel="nofollow">Weather and Weather Forecast Widget</a>. Then go to Appearance &raquo; Widgets. Drag the GoGadget Weather Widget. Fill out all the settings. There are tons of options.</p>
<p>Here is how the preview looks:</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/weatherforecast.gif" alt="Weather Forecast Widget" title="Weather Forecast Widget" width="520" height="300" class="alignnone size-full wp-image-5153" /></p>
<p>Although the preview looks a lot nicer, the data powered by link is a really big turn down for us.</p>
<p>We hope that you like these plugins. If you know of a better plugin, then feel free to suggest it in the comments.</p>
<p><a href="http://www.wpbeginner.com/plugins/how-to-show-weather-forecast-in-your-wordpress/">How to Show Weather Forecast in Your WordPress</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=3xL3Yb-CbPQ:F7Lt0sd5T18:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=3xL3Yb-CbPQ:F7Lt0sd5T18:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=3xL3Yb-CbPQ:F7Lt0sd5T18:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=3xL3Yb-CbPQ:F7Lt0sd5T18:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=3xL3Yb-CbPQ:F7Lt0sd5T18:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=3xL3Yb-CbPQ:F7Lt0sd5T18:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=3xL3Yb-CbPQ:F7Lt0sd5T18:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=3xL3Yb-CbPQ:F7Lt0sd5T18: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/3xL3Yb-CbPQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/plugins/how-to-show-weather-forecast-in-your-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/wp-google-weather-150x150.gif" />
		<media:content url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/wp-google-weather.gif" medium="image">
			<media:title type="html">WP Google Weather</media:title>
			<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/wp-google-weather-150x150.gif" />
		</media:content>
		<media:content url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/weatherforecast.gif" medium="image">
			<media:title type="html">Weather Forecast Widget</media:title>
			<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/weatherforecast-150x150.gif" />
		</media:content>
	<feedburner:origLink>http://www.wpbeginner.com/plugins/how-to-show-weather-forecast-in-your-wordpress/</feedburner:origLink></item>
		<item>
		<title>How to Add Pinterest “Pin It” button in your WordPress Blog</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/MqtzILVJ6aE/</link>
		<comments>http://www.wpbeginner.com/wp-tutorials/how-to-add-pinterest-pin-it-button-in-your-wordpress-blog/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 15:51:47 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[adding pin it button in wordpress]]></category>
		<category><![CDATA[adding pinterest to wordpress]]></category>
		<category><![CDATA[how to add pin it button in wordpress]]></category>
		<category><![CDATA[how to add pinterest pin it button in wordpress]]></category>
		<category><![CDATA[how to add pinterest to wordpress]]></category>
		<category><![CDATA[how to add pinterest to your blog]]></category>
		<category><![CDATA[pinterest]]></category>
		<category><![CDATA[pinterest pin it button in wordpress]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5144</guid>
		<description><![CDATA[<p>Recently while monitoring our blog stats, a new traffic source was popping up enough for us to notice. This traffic source was Pinterest. We started using the platform and saw great potential in it therefore we have added it on List25. In this article, we will show you how to add the Pinterest &#8220;Pin It&#8221; button to your WordPress blog. First thing you need to do is paste the following script in your footer.php file right before the body close...</p><p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-pinterest-pin-it-button-in-your-wordpress-blog/">How to Add Pinterest &#8220;Pin It&#8221; button in your WordPress Blog</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>]]></description>
			<content:encoded><![CDATA[<p>Recently while monitoring our blog stats, a new traffic source was popping up enough for us to notice. This traffic source was <a href="http://www.pinterest.com/syedbalkhi" title="Pinterest" target="_blank">Pinterest</a>. We started using the platform and saw great potential in it therefore we have added it on <a href="http://list25.com/" title="List25" target="_blank">List25</a>. In this article, we will show you how to add the Pinterest &#8220;Pin It&#8221; button to your WordPress blog.</p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/pinterestbuttons.gif" alt="Pinterest Buttons" title="Pinterest Buttons" width="520" height="120" class="alignnone size-full wp-image-5147" /></p>
<p>First thing you need to do is paste the following script in your <em>footer.php</em> file right before the body close tag.</p>
<pre class="brush: php; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
(function() {
    window.PinIt = window.PinIt || { loaded:false };
    if (window.PinIt.loaded) return;
    window.PinIt.loaded = true;
    function async_load(){
        var s = document.createElement(&quot;script&quot;);
        s.type = &quot;text/javascript&quot;;
        s.async = true;
        s.src = &quot;http://assets.pinterest.com/js/pinit.js&quot;;
        var x = document.getElementsByTagName(&quot;script&quot;)[0];
        x.parentNode.insertBefore(s, x);
    }
    if (window.attachEvent)
        window.attachEvent(&quot;onload&quot;, async_load);
    else
        window.addEventListener(&quot;load&quot;, async_load, false);
})();
&lt;/script&gt;
</pre>
<p>Once you have done that, you can add the following code in your <em>single.php</em> file at a location of your choice:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php $pinterestimage = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), 'full' ); ?&gt;
&lt;a href=&quot;http://pinterest.com/pin/create/button/?url=&lt;?php echo urlencode(get_permalink($post-&gt;ID)); ?&gt;&amp;media=&lt;?php echo $pinterestimage[0]; ?&gt;&amp;description=&lt;?php the_title(); ?&gt;&quot; class=&quot;pin-it-button&quot; count-layout=&quot;vertical&quot;&gt;Pin It&lt;/a&gt;
</pre>
<p>The code above is basically pulling your Featured Image, the title of your post as description, and the URL of the post. It is designed for the vertical share button. If you want to put the horizontal share button, simply change count-layout parameter to horizontal.</p>
<p>We hope that this will help. P.S. if you are on Pinterest then please follow <a href="http://www.pinterest.com/syedbalkhi" title="Pinterest" target="_blank">Syed Balkhi</a></p>
<h4>Pinterest Shortcode</h4>
<p>Update: one of our user wanted to create a shortcode for the Pinterest &#8220;Pin It&#8221; button. You can easily do so by pasting the following code either in your theme&#8217;s functions.php file or your site plugin&#8217;s file:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
function get_pin($atts) {
$pinterestimage = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), 'full' );
return '&lt;a href=&quot;http://pinterest.com/pin/create/button/?url' . urlencode(get_permalink($post-&gt;ID)) . '&amp;media=' . $pinterestimage[0] . '&amp;description=' . get_the_title() .'&quot; class=&quot;pin-it-button&quot; count-layout=&quot;vertical&quot;&gt;Pin It&lt;/a&gt;'; }

add_shortcode('pin', 'get_pin');
?&gt;
</pre>
<p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-pinterest-pin-it-button-in-your-wordpress-blog/">How to Add Pinterest &#8220;Pin It&#8221; button in your WordPress Blog</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=MqtzILVJ6aE:Su4LiKq5nwg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=MqtzILVJ6aE:Su4LiKq5nwg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=MqtzILVJ6aE:Su4LiKq5nwg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=MqtzILVJ6aE:Su4LiKq5nwg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=MqtzILVJ6aE:Su4LiKq5nwg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=MqtzILVJ6aE:Su4LiKq5nwg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=MqtzILVJ6aE:Su4LiKq5nwg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=MqtzILVJ6aE:Su4LiKq5nwg: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/MqtzILVJ6aE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/wp-tutorials/how-to-add-pinterest-pin-it-button-in-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
	
		<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/pinterestbuttons-150x120.gif" />
		<media:content url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/pinterestbuttons.gif" medium="image">
			<media:title type="html">Pinterest Buttons</media:title>
			<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/pinterestbuttons-150x120.gif" />
		</media:content>
	<feedburner:origLink>http://www.wpbeginner.com/wp-tutorials/how-to-add-pinterest-pin-it-button-in-your-wordpress-blog/</feedburner:origLink></item>
		<item>
		<title>Online Community Management for Dummies (Book Review)</title>
		<link>http://feedproxy.google.com/~r/wpbeginner/~3/nXWtfj-oLr8/</link>
		<comments>http://www.wpbeginner.com/books/online-community-management-for-dummies-book-review/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 17:16:25 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[community management]]></category>

		<guid isPermaLink="false">http://www.wpbeginner.com/?p=5137</guid>
		<description><![CDATA[<p>I was at a session in Affiliate Summit West where I ran into Deborah Ng, Conference Director of BlogWorld Expo. Over the past years, her and I have become good friends. I was honored to speak at the last two BlogWorld events. I knew Deb had a book out, but I was truly surprised when she pulled one out of her bag and gave it to me. I was crazy busy once I came back, but I am finally done...</p><p><a href="http://www.wpbeginner.com/books/online-community-management-for-dummies-book-review/">Online Community Management for Dummies (Book Review)</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p>]]></description>
			<content:encoded><![CDATA[<p>I was at a session in <a href="http://www.wpbeginner.com/refer/affsummit" style="" target="_blank" rel="nofollow" >Affiliate Summit West</a> where I ran into Deborah Ng, Conference Director of <a href="http://www.wpbeginner.com/refer/bwe" style="" target="_blank" rel="nofollow" >BlogWorld</a> Expo. Over the past years, her and I have become good friends. I was honored to speak at the last two <a href="http://www.wpbeginner.com/refer/bwe" style="" target="_blank" rel="nofollow" >BlogWorld</a> events. I knew Deb had a book out, but I was truly surprised when she pulled one out of her bag and gave it to me. I was crazy busy once I came back, but I am finally done going through the book. Below are my thoughts about the book: <a href="http://www.wpbeginner.com/refer/communitymanagement" title="Online Community Management for Dummies" target="_blank">Online Community Management for Dummies</a>.</p>
<p>Community Management is something that you will have to do as a blogger. Just like most other things communities do not start out big, but it will only grow big if you are a good community manager. Deb. shares all different type of aspects to community management. For someone who is relatively new, it could be a lot to handle. I know that from personal experience. This book outlines not only all the hats that you have to wear as a community manager, but it shows you how to do it well. </p>
<p>The book covers topics like Basic outline of community management, establishing community policies and guidelines, building a productive online community where you listen and communicate with your members, growing your community by encouraging interaction and involvement as well as attracting more people through other measures. Most importantly, Deb shares her expertise on how to assess your growth, evaluate the results, and make decisions on what you find. </p>
<p>One of the aspects I love about Deb is that she takes her online connections offline. I talked to her over the web for the first time, but now I have met her at numerous events. She is exactly the same person as she is online who is welcoming and friendly. I find it a rare characteristic to have. A lot of people I meet online are totally different in real life. Deb shares her expertise of taking your online community offline by hosting meetups, tweetups or other events. The book ends with ten essential tasks for community managers, ten must have skills, and ten best practices.</p>
<p>I think the book was a breeze to read. I cruised through the information really fast. I wished that it talked a little bit more about the monetization aspects, but I realize the book already covers too much and it is hard to cover everything.</p>
<p>If you are a blogger or an online community manager, this is a must read book. Most of the time, I don&#8217;t like Dummies books, but this one was well-worth the read.</p>
<p><a href="http://www.wpbeginner.com/refer/communitymanagement" title="Online Community Management for Dummies" target="_blank">Order your copy of Online Community Management for Dummies</a></p>
<p>P.S. Thanks Deb for signing my copy. I love collecting the books with author signature <img src='http://cdn.wpbeginner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img src="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/onlinecommunitymanagementbook.gif" alt="Online Community Management for Dummies Signed by Deb Ng" title="Online Community Management for Dummies Signed by Deb Ng" width="520" height="620" class="alignnone size-full wp-image-5138" /></p>
<p><a href="http://www.wpbeginner.com/books/online-community-management-for-dummies-book-review/">Online Community Management for Dummies (Book Review)</a> is a post from: <a href="http://www.wpbeginner.com" target="_blank" rel="friend">WPBeginner</a> which is not allowed to be copied on other sites.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXWtfj-oLr8:Mk8oEcA4dzk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXWtfj-oLr8:Mk8oEcA4dzk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=nXWtfj-oLr8:Mk8oEcA4dzk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXWtfj-oLr8:Mk8oEcA4dzk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXWtfj-oLr8:Mk8oEcA4dzk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXWtfj-oLr8:Mk8oEcA4dzk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wpbeginner?i=nXWtfj-oLr8:Mk8oEcA4dzk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXWtfj-oLr8:Mk8oEcA4dzk: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/nXWtfj-oLr8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wpbeginner.com/books/online-community-management-for-dummies-book-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/onlinecommunitymanagementbook-150x150.gif" />
		<media:content url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/onlinecommunitymanagementbook.gif" medium="image">
			<media:title type="html">Online Community Management for Dummies Signed by Deb Ng</media:title>
			<media:thumbnail url="http://cdn.wpbeginner.com/wp-content/uploads/2012/01/onlinecommunitymanagementbook-150x150.gif" />
		</media:content>
	<feedburner:origLink>http://www.wpbeginner.com/books/online-community-management-for-dummies-book-review/</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 @ 2012-02-08 09:05:25 -->

