Twitter Handle Does Not Show

Viewing 3 posts - 1 through 3 (of 3 total)
  • #14539
    TSOP
    Participant

    The Twitter handle is not listed in the tweet button at the bottom of posts. So, when someone wants to share my post with a tweet, it does not show my twitter name in the automatically created tweet. Meaning that my post does not get connected to my twitter account when someone tweets it.

    Suggestions?

    #14545
    Daniel Tara
    Keymaster

    In functions.php you will find a line that looks like this:

    <a href="<?php echo esc_url( 'https://twitter.com/share' ); ?>" class="twitter-share-button" data-url="<?php the_permalink(); ?>">Tweet</a>

    Replace it with this:

    <a href="<?php echo esc_url( 'https://twitter.com/share' ); ?>" class="twitter-share-button" data-url="<?php the_permalink(); ?>" data-via="username">Tweet</a>

    Replace of course the word username with your Twitter username.

    #14549
    TSOP
    Participant

    Works! Thank you πŸ™‚

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.