WordPress - 最大。最新 post 个标题的字符
Wordpress - Max. characters for latest post titles
在我的新网站 (http://tinyurl.com/q53ccn8) 的主页上,我在新闻滑块 (header = Nieuws) 下显示最近 posts。
我使用以下代码执行此操作:
<?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 个字符(包括 space)之后将最近 post 的标题剪切为...,以便每个标题都保持一行。我如何在上面使用的代码中执行此操作?
提前致谢。
您可以使用 css 轻松做到这一点,例如:
.textDiv{
line-height: 10px;
height: 12px;
width: 100%;
max-width: 100%;
max-height: 12px;
overflow: hidden;
text-overflow: ellipsis;
}
所以基本上你正在创建一个具有最大尺寸(最大高度/宽度)的 div,如果有溢出,隐藏它并显示...(省略号)
在我的新网站 (http://tinyurl.com/q53ccn8) 的主页上,我在新闻滑块 (header = Nieuws) 下显示最近 posts。
我使用以下代码执行此操作:
<?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 个字符(包括 space)之后将最近 post 的标题剪切为...,以便每个标题都保持一行。我如何在上面使用的代码中执行此操作?
提前致谢。
您可以使用 css 轻松做到这一点,例如:
.textDiv{
line-height: 10px;
height: 12px;
width: 100%;
max-width: 100%;
max-height: 12px;
overflow: hidden;
text-overflow: ellipsis;
}
所以基本上你正在创建一个具有最大尺寸(最大高度/宽度)的 div,如果有溢出,隐藏它并显示...(省略号)