Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created March 26, 2017 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/9dc2dd9ba0502ba4403501cdaa09d9b9 to your computer and use it in GitHub Desktop.
Save billerickson/9dc2dd9ba0502ba4403501cdaa09d9b9 to your computer and use it in GitHub Desktop.
<?php
/**
* Disable Sharing
*
*/
function ea_disable_social_sharing( $value, $post_id, $meta_key, $single ) {
if( 'ea_share_count_exclude' == $meta_key )
$value = true;
return $value;
}
add_filter( 'get_post_metadata', 'ea_disable_social_sharing', 10, 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment