Cannot hide automatic insertion of Sharing buttons
-
As per instructions in another thread, I used this code in my functions.php to remove the automatic insertion of sharing buttons
function jptweak_remove_share() { remove_filter( 'the_content', 'sharing_display',19 ); remove_filter( 'the_excerpt', 'sharing_display',19 ); } add_action( 'loop_end', 'jptweak_remove_share' );
However due to a recent update of either Jetpack or WP, the automatic insertion is back, in addition to my manual insertion.
How can I remove it again?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Cannot hide automatic insertion of Sharing buttons’ is closed to new replies.