Skip to content

Instantly share code, notes, and snippets.

@marcosnakamine
Created March 25, 2017 21:03
Show Gist options
  • Save marcosnakamine/38271086672dd71f4af91ce3b2afb574 to your computer and use it in GitHub Desktop.
Save marcosnakamine/38271086672dd71f4af91ce3b2afb574 to your computer and use it in GitHub Desktop.
WordPress - Remove social share buttons from excerpts in Jetpack plugin
<?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