Skip to content

Instantly share code, notes, and snippets.

@mommaroodles
Created February 24, 2025 06:06
Show Gist options
  • Save mommaroodles/f22b4de7048621eadb371b891bf65bee to your computer and use it in GitHub Desktop.
Save mommaroodles/f22b4de7048621eadb371b891bf65bee to your computer and use it in GitHub Desktop.
Custom Role Labels for WordPress
function custom_role_labels( $translated_text, $text, $domain ) {
if ( 'woocommerce' === $domain ) {
switch ( $text ) {
case 'Shop Manager':
$translated_text = 'Administrator';
break;
case 'Administrator':
$translated_text = 'Super Administrator';
break;
}
}
return $translated_text;
}
add_filter( 'gettext', 'custom_role_labels', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment