I added this code to my functions.php so that social media buttons would appear on every post on the blog index page.
// Add social sharing buttons to all posts on blog page
function add_excerpt_social_sharing_icons ( $content ) {
echo do_shortcode (’[x_share title=“Share this Post” facebook=“true” twitter=“true” google_plus=“true” linkedin=“false” pinterest=“true” reddit=“true” email=“true”]’);
}
add_action(‘x_before_the_excerpt_end’, ‘add_excerpt_social_sharing_icons’);
It works, but I want to remove the text (“Share this post”) that appears above the buttons. I tried removing title=“Share this Post” from the above code, and also tried changing it to title="", but neither worked.