mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
5 lines
171 B
Text
5 lines
171 B
Text
add_filter( 'woocommerce_product_related_products_heading', 'wc_rename_related_products' );
|
|
|
|
function wc_rename_related_products() {
|
|
return "Customers also viewed";
|
|
}
|