Hi,
I am using the following code for social sharing in blog posts… Have added this in functions.php file. Is there a way that instead of twitter we can get X?
// Add social sharing right below the post title
// =============================================================================
function add_social_sharing_below_title() {
// single post
if( is_singular(‘post’) ){
echo do_shortcode(’[x_share title=“Share this Post” facebook=“true” twitter=“true” google_plus=“true” linkedin=“true” pinterest=“false” reddit=“true” email=“true”]’);
}
}
add_action(‘x_after_the_content_begin’, ‘add_social_sharing_below_title’);
// =============================================================================