mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
6 lines
208 B
Text
6 lines
208 B
Text
<?php
|
|
function your_prefix_change_out_stock_string() {
|
|
return __( 'Your Alternate Text', 'your-text-domain' );
|
|
}
|
|
add_filter( 'astra_woo_shop_out_of_stock_string', 'your_prefix_change_out_stock_string' );
|
|
?>
|