Content of the article
Use this hook if you want to add any additional information text after the price string.
1 2 3 4 | add_filter('wpcs_price_html_tail', function($price_html) { return $price_html . "<strong>Hello World!</strong>"; }); |
Use this hook if you want to add any additional information text after the price string.
1 2 3 4 | add_filter('wpcs_price_html_tail', function($price_html) { return $price_html . "<strong>Hello World!</strong>"; }); |