Text, that is displayed before linked products.
Parameters
- text – displayed before linked products
Usage
<?php
function change_products_that_added_text ( $text ) {
//your code here
return $text;
}
add_filter( 'products_that_added_text', 'change_products_that_added_text' );
?>