Untitled
unknown
plain_text
4 years ago
338 B
10
Indexable
function daniele_product_tags_gettext( $translation, $text, $domain ) {
switch ( $translation ) {
case 'Products tagged “%s”' :
$translation = __( 'Products worn by %s', 'woocommerce' );
break;
}
return $translation;
}
add_filter( 'gettext', 'daniele_product_tags_gettext', 20, 3 );Editor is loading...