Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1417340

    RPronk
    Participant

    Hello, yesterday I was looking in this forum and found this solutions to add social media share buttons:

    Please add the code below in your functions.php.

    add_action(‘x_before_the_content_end’, function() {
    echo do_shortcode(‘[share title=”Share this Post” facebook=”true” twitter=”true” google_plus=”true” linkedin=”true” pinterest=”true” reddit=”true” email=”true”]’);
    });

    But now they are on my whole site, I need them to be on post’s only and not on pages.

    Thanks for the help!
    site: http://knip-t.nl

    #1417395

    Darshana
    Moderator

    Hi there,

    Thanks for writing in! You can use the following code instead.

    
    // Add Social Sharing after the single post content
    // =============================================================================
    
    function x_add_social_sharing ( $content ) {
      if ( is_singular('post') ) {
        echo do_shortcode('[share title="Share this Post" facebook="true" twitter="true" google_plus="true" linkedin="true" pinterest="true" reddit="true" email="true"]');
      }
    }
    add_action('x_before_the_content_end', 'x_add_social_sharing');
    

    Hope that helps.