mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
5 lines
177 B
Text
5 lines
177 B
Text
function my_woo_outofstock_text( $text ) {
|
|
$text = __( 'MY CUSTOM TEXT', 'oceanwp' );
|
|
return $text;
|
|
}
|
|
add_filter( 'ocean_woo_outofstock_text', 'my_woo_outofstock_text', 20 );
|