Skip to content

Instantly share code, notes, and snippets.

@ErikBernskiold
Created November 25, 2018 11:57
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 ErikBernskiold/d302bb9903550d5faa392e0ef25833f2 to your computer and use it in GitHub Desktop.
Save ErikBernskiold/d302bb9903550d5faa392e0ef25833f2 to your computer and use it in GitHub Desktop.
function ilcc_modify_consent_text( $text ) {
return 'My new consent button text';
}
add_filter( 'ilcc_consent_text', 'ilcc_modify_consent_text' );
function ilcc_modify_accept_text( $text ) {
return 'My new accept button text.';
}
add_filter( 'ilcc_accept_text', 'ilcc_modify_accept_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment