<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>Social sharing buttons on posts &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 08 Nov 2025 17:27:10 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104056</guid>
					<title><![CDATA[Social sharing buttons on posts]]></title>
					<link>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104056</link>
					<pubDate>Sat, 13 Sep 2014 09:01:33 +0000</pubDate>
					<dc:creator>Alexei K</dc:creator>

					<description>
						<![CDATA[
						<p>Hello again 🙂</p>
<p>I would like to see social sharing buttons on all of my posts.</p>
<p>I&#8217;ve added this code (found in the forum) to my child theme&#8217;s functions.php:</p>
<pre><code>add_filter(&#039;the_content&#039;, function($content){
return $content.&#039;[share title=&quot;Share this Post&quot; facebook=&quot;true&quot; twitter=&quot;true&quot; google_plus=&quot;true&quot; linkedin=&quot;true&quot; pinterest=&quot;true&quot; reddit=&quot;true&quot; email=&quot;true&quot;]&#039;;
});
</code></pre>
<p>After refreshing, got a 500 error.</p>
<p>I also have this code in there:</p>
<pre><code>function x_social_global() {

  $facebook    = x_get_option( &#039;x_social_facebook&#039; );
  $twitter     = x_get_option( &#039;x_social_twitter&#039; );
  $google_plus = x_get_option( &#039;x_social_googleplus&#039; );
  $linkedin    = x_get_option( &#039;x_social_linkedin&#039; );
  $foursquare  = x_get_option( &#039;x_social_foursquare&#039; );
  $youtube     = x_get_option( &#039;x_social_youtube&#039; );
  $vimeo       = x_get_option( &#039;x_social_vimeo&#039; );
  $instagram   = x_get_option( &#039;x_social_instagram&#039; );
  $pinterest   = x_get_option( &#039;x_social_pinterest&#039; );
  $dribbble    = x_get_option( &#039;x_social_dribbble&#039; );
  $behance     = x_get_option( &#039;x_social_behance&#039; );
  $tumblr      = x_get_option( &#039;x_social_tumblr&#039; );
  $rss         = x_get_option( &#039;x_social_rss&#039; );

  $output = &#039;&lt;div class=&quot;x-social-global&quot;&gt;&#039;;

    if ( $facebook )    : $output .= &#039;&lt;a href=&quot;&#039; . $facebook    . &#039;&quot; class=&quot;facebook&quot; title=&quot;Facebook&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-social-facebook&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
    if ( $twitter )     : $output .= &#039;&lt;a href=&quot;&#039; . $twitter     . &#039;&quot; class=&quot;twitter&quot; title=&quot;Twitter&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-social-twitter&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
    if ( $google_plus ) : $output .= &#039;&lt;a href=&quot;&#039; . $google_plus . &#039;&quot; class=&quot;google-plus&quot; title=&quot;Google+&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-social-google-plus&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
    if ( $linkedin )    : $output .= &#039;&lt;a href=&quot;&#039; . $linkedin    . &#039;&quot; class=&quot;linkedin&quot; title=&quot;LinkedIn&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-social-linkedin&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
    if ( $foursquare )  : $output .= &#039;&lt;a href=&quot;&#039; . $foursquare  . &#039;&quot; class=&quot;foursquare&quot; title=&quot;Foursquare&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-social-foursquare&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
    if ( $youtube )     : $output .= &#039;&lt;a href=&quot;&#039; . $youtube     . &#039;&quot; class=&quot;youtube&quot; title=&quot;YouTube&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-social-youtube&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
    if ( $vimeo )       : $output .= &#039;&lt;a href=&quot;&#039; . $vimeo       . &#039;&quot; class=&quot;vimeo&quot; title=&quot;Vimeo&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-social-vimeo&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
    if ( $instagram )   : $output .= &#039;&lt;a href=&quot;&#039; . $instagram   . &#039;&quot; class=&quot;instagram&quot; title=&quot;Instagram&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-social-instagram&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
    if ( $pinterest )   : $output .= &#039;&lt;a href=&quot;&#039; . $pinterest   . &#039;&quot; class=&quot;pinterest&quot; title=&quot;Pinterest&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-social-pinterest&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
    if ( $dribbble )    : $output .= &#039;&lt;a href=&quot;&#039; . $dribbble    . &#039;&quot; class=&quot;dribbble&quot; title=&quot;Dribbble&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-social-dribbble&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
    if ( $behance )     : $output .= &#039;&lt;a href=&quot;&#039; . $behance     . &#039;&quot; class=&quot;behance&quot; title=&quot;Behance&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-social-behance&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
    if ( $tumblr )      : $output .= &#039;&lt;a href=&quot;&#039; . $tumblr      . &#039;&quot; class=&quot;tumblr&quot; title=&quot;Tumblr&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-social-tumblr&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
    if ( $rss )         : $output .= &#039;&lt;a href=&quot;&#039; . $rss         . &#039;&quot; class=&quot;rss&quot; title=&quot;RSS&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-social-rss&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;

  $output .= &#039;&lt;a style=&quot;position: relative;top: -2px;&quot;  href=&quot;http://vk.com/bhumibrushes&quot; class=&quot;vk&quot; title=&quot;VK&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-vk&quot;&gt;&lt;/i&gt;&lt;/a&gt;&lt;/div&gt;&#039;;

  echo $output;

}</code></pre>
<p>Must be doing something wrong, can you please help me fix it?</p>
<p>Thank you! 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104067</guid>
					<title><![CDATA[Reply To: Social sharing buttons on posts]]></title>
					<link>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104067</link>
					<pubDate>Sat, 13 Sep 2014 10:31:32 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Please delete the code above and copy _content-post-header.php from<br />
YOUR THEME -&gt; Framework -&gt; Views -&gt; {STACK NAME} </p>
<p> And make this path in child theme:</p>
<p>YOUR CHILD THEME -&gt; Framework -&gt; Views -&gt; {STACK NAME}</p>
<p>Now past _content-post-header.php in there , Open the file and add this code before &lt;/header&gt;</p>
<pre><code>      &lt;?php
echo do_shortcode(&#039;[share title=&quot;Share this Post&quot; facebook=&quot;true&quot; twitter=&quot;true&quot; google_plus=&quot;true&quot; linkedin=&quot;true&quot; pinterest=&quot;true&quot; reddit=&quot;true&quot; email=&quot;true&quot;]&#039;) ;

?&gt;
</code></pre>
<p>Hope it helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104074</guid>
					<title><![CDATA[Reply To: Social sharing buttons on posts]]></title>
					<link>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104074</link>
					<pubDate>Sat, 13 Sep 2014 10:52:39 +0000</pubDate>
					<dc:creator>Alexei K</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks! Did you mean delete the code I&#8217;ve found in the forum or all of the code above? I have deleted the forum code already, what I have in there now is the code that adds VK social network (the second piece of code above). And I would like to have VK as one of the sharing buttons. So how do I go about that? Sorry, I&#8217;m clueless 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104075</guid>
					<title><![CDATA[Reply To: Social sharing buttons on posts]]></title>
					<link>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104075</link>
					<pubDate>Sat, 13 Sep 2014 10:57:05 +0000</pubDate>
					<dc:creator>Alexei K</dc:creator>

					<description>
						<![CDATA[
						<p>P.S. I have VK as one of the social media in the footer and would also like to have a share button for it, to be clear.</p>
<p><a href="http://bhumibrushes.ru" rel="nofollow">http://bhumibrushes.ru</a></p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104108</guid>
					<title><![CDATA[Reply To: Social sharing buttons on posts]]></title>
					<link>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104108</link>
					<pubDate>Sat, 13 Sep 2014 13:22:00 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Just add this code in same path instead of last suggested one:</p>
<pre><code> &lt;?php
echo do_shortcode(&#039;[share title=&quot;Share this Post&quot; facebook=&quot;true&quot; twitter=&quot;true&quot; google_plus=&quot;true&quot; linkedin=&quot;true&quot; pinterest=&quot;true&quot; reddit=&quot;true&quot; email=&quot;true&quot; rss=&quot;true&quot;]&#039;) ;

?&gt;
&lt;a href=&quot;PUT VK URL HERE&quot;&gt;&lt;i class=&quot;x-icon-vk&quot;&gt;&lt;/i&gt;&lt;/a&gt;</code></pre>
<p>Let me know if it works.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104157</guid>
					<title><![CDATA[Reply To: Social sharing buttons on posts]]></title>
					<link>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104157</link>
					<pubDate>Sat, 13 Sep 2014 15:59:48 +0000</pubDate>
					<dc:creator>Alexei K</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks!</p>
<p>Here&#8217;s what I got  <a href="https://www.dropbox.com/s/6lype2uk0pn4uxr/PostScreen.bmp?dl=0" rel="nofollow">https://www.dropbox.com/s/6lype2uk0pn4uxr/PostScreen.bmp?dl=0</a></p>
<p>And would it be possible to have the buttons below posts?</p>
<p>Thank you 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104164</guid>
					<title><![CDATA[Reply To: Social sharing buttons on posts]]></title>
					<link>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104164</link>
					<pubDate>Sat, 13 Sep 2014 16:04:34 +0000</pubDate>
					<dc:creator>Alexei K</dc:creator>

					<description>
						<![CDATA[
						<p>P.S. And do they have to show up on the preview page?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104185</guid>
					<title><![CDATA[Reply To: Social sharing buttons on posts]]></title>
					<link>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104185</link>
					<pubDate>Sat, 13 Sep 2014 16:59:00 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>If you wish to set them after the content then copy content.php from<strong> YOUR THEME -&gt; Framework -&gt; Views -&gt; {STACK NAME}</strong>  and put it same path in your child theme ,Open file and and put the code below just before last &lt;/div&gt;.</p>
<pre><code>    &lt;div class=&quot;custom-social&quot;&gt;
            &lt;?php
echo do_shortcode(&#039;[share title=&quot;Share this Post&quot; facebook=&quot;true&quot; twitter=&quot;true&quot; google_plus=&quot;true&quot; linkedin=&quot;true&quot; pinterest=&quot;true&quot; reddit=&quot;true&quot; email=&quot;true&quot; rss=&quot;true&quot;]&#039;) ;

?&gt;
&lt;a href=&quot;#&quot;&gt;&lt;i class=&quot;x-icon-vk&quot;&gt;&lt;/i&gt;&lt;/a&gt;
&lt;/div&gt;</code></pre>
<p>Also if you want to delete the social from blog page add <strong>Customize -&gt; Custom -&gt; CSS</strong></p>
<pre><code>.blog .custom-social {
display: none;
}</code></pre>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104207</guid>
					<title><![CDATA[Reply To: Social sharing buttons on posts]]></title>
					<link>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104207</link>
					<pubDate>Sat, 13 Sep 2014 18:03:21 +0000</pubDate>
					<dc:creator>Alexei K</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks, the buttons are still above the content. And the VK button is still below the buttons, on the left right above the content, just like on the screenshot I sent.</p>
<p>Thank you!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104248</guid>
					<title><![CDATA[Reply To: Social sharing buttons on posts]]></title>
					<link>https://theme.co/archive/forums/topic/social-sharing-buttons-on-posts/#post-104248</link>
					<pubDate>Sat, 13 Sep 2014 20:12:26 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Alexei, </p>
<p>Change the given code to this :</p>
<pre><code>&lt;div class=&quot;custom-social&quot;&gt;

&lt;?php
echo do_shortcode(&#039;[share title=&quot;Share this Post&quot; facebook=&quot;true&quot; twitter=&quot;true&quot; google_plus=&quot;true&quot; linkedin=&quot;true&quot; pinterest=&quot;true&quot; reddit=&quot;true&quot; email=&quot;true&quot; rss=&quot;true&quot;]&#039;) ;
?&gt;

&lt;/div&gt;</code></pre>
<p>Then add this code at your child theme&#8217;s functions.php</p>
<pre><code>add_action(&#039;wp_head&#039;, function(){

remove_shortcode( &#039;share&#039; );
add_shortcode( &#039;share&#039;, function ( $atts ) {
  extract( shortcode_atts( array(
    &#039;id&#039;          =&gt; &#039;&#039;,
    &#039;class&#039;       =&gt; &#039;&#039;,
    &#039;style&#039;       =&gt; &#039;&#039;,
    &#039;title&#039;       =&gt; &#039;&#039;,
    &#039;facebook&#039;    =&gt; &#039;&#039;,
    &#039;twitter&#039;     =&gt; &#039;&#039;,
    &#039;google_plus&#039; =&gt; &#039;&#039;,
    &#039;linkedin&#039;    =&gt; &#039;&#039;,
    &#039;pinterest&#039;   =&gt; &#039;&#039;,
    &#039;reddit&#039;      =&gt; &#039;&#039;,
    &#039;email&#039;       =&gt; &#039;&#039;
  ), $atts ) );

  $share_url        = urlencode( get_permalink() );
  $share_title      = urlencode( get_the_title() );
  $share_source     = urlencode( get_bloginfo( &#039;name&#039; ) );
  $share_content    = urlencode( get_the_excerpt() );
  $share_media_info = wp_get_attachment_image_src( get_post_thumbnail_id(), &#039;full&#039; );
  $share_media      = $share_media_info[0];

  $id          = ( $id          != &#039;&#039;     ) ? &#039;id=&quot;&#039; . esc_attr( $id ) . &#039;&quot;&#039; : &#039;&#039;;
  $class       = ( $class       != &#039;&#039;     ) ? &#039;x-entry-share &#039; . esc_attr( $class ) : &#039;x-entry-share&#039;;
  $style       = ( $style       != &#039;&#039;     ) ? &#039;style=&quot;&#039; . $style . &#039;&quot;&#039; : &#039;&#039;;
  $title       = ( $title       != &#039;&#039;     ) ? $title : __( &#039;Share this Post&#039;, &#039;__x__&#039; );
  $facebook    = ( $facebook    == &#039;true&#039; ) ? &quot;&lt;a href=\&quot;#share\&quot; data-toggle=\&quot;tooltip\&quot; data-placement=\&quot;bottom\&quot; data-trigger=\&quot;hover\&quot; class=\&quot;x-share\&quot; title=\&quot;&quot; . __( &#039;Share on Facebook&#039;, &#039;__x__&#039; ) . &quot;\&quot; onclick=\&quot;window.open(&#039;http://www.facebook.com/sharer.php?u={$share_url}&amp;t={$share_title}&#039;, &#039;popupFacebook&#039;, &#039;width=650, height=270, resizable=0, toolbar=0, menubar=0, status=0, location=0, scrollbars=0&#039;); return false;\&quot;&gt;&lt;i class=\&quot;x-social-facebook\&quot;&gt;&lt;/i&gt;&lt;/a&gt;&quot; : &#039;&#039;;
  $twitter     = ( $twitter     == &#039;true&#039; ) ? &quot;&lt;a href=\&quot;#share\&quot; data-toggle=\&quot;tooltip\&quot; data-placement=\&quot;bottom\&quot; data-trigger=\&quot;hover\&quot; class=\&quot;x-share\&quot; title=\&quot;&quot; . __( &#039;Share on Twitter&#039;, &#039;__x__&#039; ) . &quot;\&quot; onclick=\&quot;window.open(&#039;https://twitter.com/intent/tweet?text={$share_title}&amp;url={$share_url}&#039;, &#039;popupTwitter&#039;, &#039;width=500, height=370, resizable=0, toolbar=0, menubar=0, status=0, location=0, scrollbars=0&#039;); return false;\&quot;&gt;&lt;i class=\&quot;x-social-twitter\&quot;&gt;&lt;/i&gt;&lt;/a&gt;&quot; : &#039;&#039;;
  $google_plus = ( $google_plus == &#039;true&#039; ) ? &quot;&lt;a href=\&quot;#share\&quot; data-toggle=\&quot;tooltip\&quot; data-placement=\&quot;bottom\&quot; data-trigger=\&quot;hover\&quot; class=\&quot;x-share\&quot; title=\&quot;&quot; . __( &#039;Share on Google+&#039;, &#039;__x__&#039; ) . &quot;\&quot; onclick=\&quot;window.open(&#039;https://plus.google.com/share?url={$share_url}&#039;, &#039;popupGooglePlus&#039;, &#039;width=650, height=226, resizable=0, toolbar=0, menubar=0, status=0, location=0, scrollbars=0&#039;); return false;\&quot;&gt;&lt;i class=\&quot;x-social-google-plus\&quot;&gt;&lt;/i&gt;&lt;/a&gt;&quot; : &#039;&#039;;
  $linkedin    = ( $linkedin    == &#039;true&#039; ) ? &quot;&lt;a href=\&quot;#share\&quot; data-toggle=\&quot;tooltip\&quot; data-placement=\&quot;bottom\&quot; data-trigger=\&quot;hover\&quot; class=\&quot;x-share\&quot; title=\&quot;&quot; . __( &#039;Share on LinkedIn&#039;, &#039;__x__&#039; ) . &quot;\&quot; onclick=\&quot;window.open(&#039;http://www.linkedin.com/shareArticle?mini=true&amp;url={$share_url}&amp;title={$share_title}&amp;summary={$share_content}&amp;source={$share_source}&#039;, &#039;popupLinkedIn&#039;, &#039;width=610, height=480, resizable=0, toolbar=0, menubar=0, status=0, location=0, scrollbars=0&#039;); return false;\&quot;&gt;&lt;i class=\&quot;x-social-linkedin\&quot;&gt;&lt;/i&gt;&lt;/a&gt;&quot; : &#039;&#039;;
  $pinterest   = ( $pinterest   == &#039;true&#039; ) ? &quot;&lt;a href=\&quot;#share\&quot; data-toggle=\&quot;tooltip\&quot; data-placement=\&quot;bottom\&quot; data-trigger=\&quot;hover\&quot; class=\&quot;x-share\&quot; title=\&quot;&quot; . __( &#039;Share on Pinterest&#039;, &#039;__x__&#039; ) . &quot;\&quot; onclick=\&quot;window.open(&#039;http://pinterest.com/pin/create/button/?url={$share_url}&amp;media={$share_media}&amp;description={$share_title}&#039;, &#039;popupPinterest&#039;, &#039;width=750, height=265, resizable=0, toolbar=0, menubar=0, status=0, location=0, scrollbars=0&#039;); return false;\&quot;&gt;&lt;i class=\&quot;x-social-pinterest\&quot;&gt;&lt;/i&gt;&lt;/a&gt;&quot; : &#039;&#039;;
  $reddit      = ( $reddit      == &#039;true&#039; ) ? &quot;&lt;a href=\&quot;#share\&quot; data-toggle=\&quot;tooltip\&quot; data-placement=\&quot;bottom\&quot; data-trigger=\&quot;hover\&quot; class=\&quot;x-share\&quot; title=\&quot;&quot; . __( &#039;Share on Reddit&#039;, &#039;__x__&#039; ) . &quot;\&quot; onclick=\&quot;window.open(&#039;http://www.reddit.com/submit?url={$share_url}&#039;, &#039;popupReddit&#039;, &#039;width=875, height=450, resizable=0, toolbar=0, menubar=0, status=0, location=0, scrollbars=0&#039;); return false;\&quot;&gt;&lt;i class=\&quot;x-social-reddit\&quot;&gt;&lt;/i&gt;&lt;/a&gt;&quot; : &#039;&#039;;
  $email       = ( $email       == &#039;true&#039; ) ? &quot;&lt;a href=\&quot;mailto:?subject=&quot; . get_the_title() . &quot;&amp;body=&quot; . __( &#039;Hey, thought you might enjoy this! Check it out when you have a chance:&#039;, &#039;__x__&#039; ) . &quot; &quot; . get_permalink() . &quot;\&quot; data-toggle=\&quot;tooltip\&quot; data-placement=\&quot;bottom\&quot; data-trigger=\&quot;hover\&quot; class=\&quot;x-share email\&quot; title=\&quot;&quot; . __( &#039;Share via Email&#039;, &#039;__x__&#039; ) . &quot;\&quot;&gt;&lt;span&gt;&lt;i class=\&quot;x-icon-envelope\&quot;&gt;&lt;/i&gt;&lt;/span&gt;&lt;/a&gt;&quot; : &#039;&#039;;

  $vk = &quot;&lt;a href=\&quot;#share\&quot; data-toggle=\&quot;tooltip\&quot; data-placement=\&quot;bottom\&quot; data-trigger=\&quot;hover\&quot; class=\&quot;x-share\&quot; title=\&quot;&quot; . __( &#039;Share on VK&#039;, &#039;__x__&#039; ) . &quot;\&quot; &gt;&lt;i class=\&quot;x-icon-vk\&quot;&gt;&lt;/i&gt;&lt;/a&gt;&quot;;

  $output = &quot;&lt;div {$id} class=\&quot;{$class}\&quot; {$style}&gt;&quot;
            . &#039;&lt;p&gt;&#039; . $title . &#039;&lt;/p&gt;&#039;
            . &#039;&lt;div class=&quot;x-share-options&quot;&gt;&#039;
              . $facebook . $twitter . $google_plus . $linkedin . $pinterest . $reddit . $email . $vk
            . &#039;&lt;/div&gt;&#039;
          . &#039;&lt;/div&gt;&#039;;
  
  return $output;
} );

});</code></pre>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

