Code-Snippets-Functions/Execute a function on a child site/OceanWP/change-woocommerce-out-of-stock-text.txt

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 );