Created
March 25, 2017 21:03
-
-
Save marcosnakamine/38271086672dd71f4af91ce3b2afb574 to your computer and use it in GitHub Desktop.
WordPress - Remove social share buttons from excerpts in Jetpack plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'init', 'remove_excerpt_share' ); | |
function remove_excerpt_share() { | |
if ( has_filter( 'the_excerpt', 'sharing_display' ) ) { | |
remove_filter( 'the_excerpt', 'sharing_display', 19 ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment