Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Created June 15, 2016 15:18
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Bookshop - change the author attribute
add_filter( 'bookshop_author_attribute', 'jk_new_author_attribute' );
function jk_new_author_attribute( $attribute ) {
$attribute = 'pa_newattribute';
return $attribute;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment