Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #871859

    ProductionMD1986
    Participant

    Hi, I wanted to see social share buttons in all my posts, so I’ve added this code in my functions.php (in my child theme of course):

    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”]’);
    });

    It worked, but now, the social share buttons appear in all the pages, not only in my posts. How can I fix it so I see this buttons only in my posts?

    Thanks in advance

    #872536

    Paul R
    Moderator

    Hi,

    You can try this code instead.

    
    add_action('x_before_the_content_end', function() {
        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"]');
        }
    });
    

    Hope that helps.

    #872850

    ProductionMD1986
    Participant

    I worked perfectly well!

    Thanks a lot!

    #873625

    Rue Nel
    Moderator

    You’re welcome!
    Thanks for letting us know that it has worked for you.