我可以在博客首页设置最大标题长度吗?如果标题超过最大长度,则不适合的字母或单词将被替换为"...“。只有在索引中,原始标题仍然是相同的,如果你去帖子。
<h4 class='title'><a expr:href='data:post.href' rel='bookmark'><data:post.title/></a></h4>发布于 2016-12-18 17:58:29
可以,您可以通过javascript在索引页面中设置标题长度。将此代码粘贴到</body>之前。您可以更改最大长度30。
<b:if cond='data:blog.pageType == "index"'>
<script type="text/javascript">
//<![CDATA[
$(".title").each(function(){
if($(this).text().length>30)
{$(this).text($(this).text().substr(0, 30)+'...');}
});
//]]>
</script>
</b:if>https://stackoverflow.com/questions/41204853
复制相似问题