mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
181 B
Text
5 lines
181 B
Text
function change_reviews_tab_text( $tabs ) {
|
|
$tabs['reviews']['title'] = 'Testimonials';
|
|
return $tabs;
|
|
}
|
|
add_filter( 'woocommerce_product_tabs', 'change_reviews_tab_text' );
|