将标题截断为单行和容器宽度

时间:2014-03-01 作者:vytfla

有没有办法将标题截断为容器宽度?我可以使用下面的代码将一个长标题截断为一行,但这对移动设备来说并不适用。

<h3>
    <?php
        $thetitle = $post->post_title;
        $getlength = strlen($thetitle);
        $thelength = 33;
        echo substr($thetitle, 0, $thelength);
        if ($getlength > $thelength) echo "...";
    ?>
</h3>

1 个回复
SO网友:Leader

使用CSS3的“文本溢出:省略号;”怎么样?

这样做将确保你的标题保持在一行中,删掉任何超出容器宽度限制的内容。

结束

相关推荐

PHP帮助GET_TEMPLATE_DIRECTORY+PHP包含

抱歉,我的PHP技能不足。我想在WP中使用php include,但我想使用<?php get_template_directory(); ?>我不知道那会是什么样子。我的非WP文件如下所示:<?php include \'inc/social.php\'; ?> 基本上我不知道如何将两个PHP命令串在一起get_template_directory + 包括