Вы можете попробовать с ниже. Снизу CSS будет отображаться заголовок в зависимости от назначенной ширины на css.
.post-title-section{
width: 90px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
<div class="post-title-section">
<a href="https://yourdomain.com/post" class="post-title">This is test post title</a>
</div>