Hi,
I have a quick question, please.
How can I add social links to the Blog summary area as below, please. You guys helped me to add Social share buttons to the blog post through the code in the functions.php. Is there a way to modify it to my requirement please?
Many thanks
// Add Share Buttons
// =============================================================================
add_action(‘x_before_the_content_end’, function() {
if ( is_singular(‘post’) ) {
echo do_shortcode(’[share title=“Share this Article” facebook=“true” twitter=“true” linkedin=“true” google_plus=“true” email=“true”]’);
}
});