Wordpress - 最大。最新帖子的字符

时间:2015-11-14 19:50:08

标签: wordpress title

在我的新网站(http://tinyurl.com/q53ccn8)的主页上,我在新闻栏目下显示了最新帖子(标题= Nieuws)。

我使用以下代码执行此操作:

<?php $args = array( 'numberposts' => '5', 'offset' => 6,); $recent_posts = wp_get_recent_posts( $args ); foreach( $recent_posts as $recent ){ echo '<li class="list-group-item"><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a> </li> ';}?> 

现在,我希望在40个字符(包括空格)之后剪切最近帖子的标题,所以每个标题都坚持一行。我怎么能在上面使用的代码中执行此操作?

提前致谢。

1 个答案:

答案 0 :(得分:1)

您可以使用css轻松完成此操作,例如:

.textDiv{
   line-height: 10px;
   height: 12px;
   width: 100%;
   max-width: 100%;
   max-height: 12px;
   overflow: hidden;
   text-overflow: ellipsis;
}

所以基本上你要创建一个具有最大尺寸(最大高度/宽度)的div,如果有溢出,隐藏它并显示...(省略号)