如何在组合功能结束后允许在句号结束时删除句点

时间:2012-08-05 22:56:27

标签: php html wordpress

首先,我需要删除此函数末尾的句点,该句号显示我的wordpress主题的描述。例如,一个特定的描述将显示为...........访问美妙的城市。

<?php post_description(); ?> 

删除句号后,我需要在第一个函数结束时添加一个城市,使其成为1个句子,例如......访问美妙的阿克伦城。

这是显示城市的分类代码

 <?php echo appthemes_get_custom_city($post->ID, CITY_TAX_NAME, 'name'); ?>**

这里是整个代码............

                        <!-- #main -->

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

                    <div class="box-bottom">&nbsp;</div>

                    <div class="text-box">

                    <?php appthemes_before_post_description(); ?>

                    <?php appthemes_post_description(); ?>

                    <?php post_description(); ?>

                    <?php city_edit_link(); ?>

                    <?php clpr_reset_link(); ?>

                    <?php appthemes_after_post_description(); ?> 

                  </div>

现在我实现了这段代码.........

<?php

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

但它显示为.........访问美妙的城市。阿克伦。

如何在句末结束时删除期间。

1 个答案:

答案 0 :(得分:0)

为“访问美妙的城市”创建一个变量。并截断期间。然后使用现在缺少句点的变量代替字符串来自哪个地方(我不使用Wordpress)。