在wordpress中结合php函数

时间:2012-08-03 23:39:32

标签: php wordpress

我有以下代码

<?php the_content(); ?> 

并显示我网站的优惠券说明

我想使用以下代码

在最后添加每个商店的名称
at <?php echo appthemes_get_custom_taxonomy($post->ID, APP_TAX_STORE, 'name'); ?>

所以例如它会说............在6pm.com服装20%的折扣。

截至目前,当我添加代码时,它会分离并创建一个新的段落,如下所示.........

衣服20%折扣。

在6pm.com。

如何将其合并为一句话。

这是完整的优惠券功能

    <!-- #coupon-main -->

                        </div> <!-- #head-box -->

                        <div class="box-bottom">&nbsp;</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>                  

2 个答案:

答案 0 :(得分:0)

WordPress可能会在编辑器内部的内容周围添加<p></p>,该内容会保存在帖子的内容中。您可以使用get_the_content()并检查它是否以</p>结尾,如果是,请将其删除,echo商店名称,然后重新添加</p> 1}}之后。

<?php

$content = trim(get_the_content());
if(substr($content, -4) == '</p>') {
    echo substr($content, 0, -4);
    echo appthemes_get_custom_taxonomy($post->ID, APP_TAX_STORE, 'name');
    echo '</p>';
}
else{
    echo $content, appthemes_get_custom_taxonomy($post->ID, APP_TAX_STORE, 'name');
}

答案 1 :(得分:0)

<?php

$content = trim(get_the_content());
if(substr($content, -4) == '</p>') {
echo substr($content, 0, -4);
echo appthemes_get_custom_taxonomy($post->ID, APP_TAX_STORE, 'name');
echo '</p>';
}
else{
$content = preg_replace("/\.$/"," ",$content);
echo $content, appthemes_get_custom_taxonomy($post->ID, APP_TAX_STORE, 'name');
} ?>