我有以下代码
<?php the_content(); ?>
它会显示我网站的优惠券描述,
我想在最后添加每个商店的名称,使用以下代码
at <?php echo appthemes_get_custom_taxonomy($post->ID, APP_TAX_STORE, 'name'); ?>
例如,它会说............ 6pm.com 服装折扣 20%。
截至目前,当我添加代码时,它会分离并创建一个新段落,如下所示......
服装折扣 20%。
在下午 6 点。
我如何将其组合为一个句子。
这是完整的优惠券功能
<!-- #coupon-main -->
</div> <!-- #head-box -->
<div class="box-bottom"> </div>
<div class="text-box">
<?php appthemes_before_post_content(); ?>
<?php the_content(); ?>
<?php clpr_edit_coupon_link(); ?>
<?php clpr_reset_coupon_votes_link(); ?>
<?php appthemes_after_post_content(); ?>
</div>