Add text to store name
Here is the code in theme to display store name:
<div class="store-name">
<?php echo get_the_term_list( $post->ID, APP_TAX_STORE, ' ', ', ', '' ); ?>
</div>
How can I add extra text to store name?
For example store name is Amazon, I want to suffix text Coupons and make it as Amazon Coupons while displaying store name.
How to do it?
Thanks in advance.