Skip to content

Instantly share code, notes, and snippets.

@IdleMuse
Created April 5, 2017 09:43
Show Gist options
  • Save IdleMuse/bf229bb819bc3431a25c24b4a038a91f to your computer and use it in GitHub Desktop.
Save IdleMuse/bf229bb819bc3431a25c24b4a038a91f to your computer and use it in GitHub Desktop.
function filter_author($name){
if(in_category("insert_category_name_here")){
return "";
}
else return $name;
}
add_filter('the_author','filter_author');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment