Hello, I tried to see if anyone else had already asked for help with this but I have not found the answer. I added the following code to my functions.php file in my X child theme. I would like for this to be positioned right under the featured image and for them to float as someone scrolls through the article. Currently, they are positioned at the end of the content only. I also would like for these social media icons to show up on my recipes page as well and not just on my blog posts. How do I accomplish that?
function x_add_social_sharing ( $content ) {
if ( is_singular(‘post’) ) {
echo do_shortcode(’[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’);