Skip to content

Instantly share code, notes, and snippets.

@georgestephanis
Created September 16, 2013 19:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save georgestephanis/6585719 to your computer and use it in GitHub Desktop.
Save georgestephanis/6585719 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'sharing_show', 'rdall_sharing_show' );
function rdall_sharing_show() {
if ( is_home() ) return true;
if ( is_archive() ) return false;
if ( is_search() ) return false;
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment