How to share blog post on social media

Hey there,
How can share blogs on social media.
Like we are sharing in the portfolio.

Thanks
Sujit

Hello Sujit,

Kindly install and activate the child theme and login through FTP then go wp-content/themes/x-child then edit the functions.php file and add this code in the file:

function x_add_social_sharing ( $content ) {
	if ( is_singular('post') ) {
		echo do_shortcode('[x_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 this helps.

Hello Jade,
Thanks man it works like charm.

Thanks
Sujit

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.