在 Visual Composer 中使用 [display-posts] 简码的问题

Issue with using [display-posts] shortcode with Visual Composer

我正在尝试使用 Visual Composer 使用 [display-posts] 短代码将最近 post 的 in-line 列表添加到 WordPress 页面。但是,每当我这样做时,post 的标题和 link 都会显示在它们应在的位置左侧的一列 - 我指定的列 [display-posts] 中只有post 的日期(如果使用 include_date="true" 请求),或空白项目符号点(如果未请求)。

有谁知道我在这里做错了什么。我附上一些屏幕截图作为示例。

Visual Composer 设置 - post 的列表应该在右栏中...

页面上的结果 - lins 和 post 标题似乎溢出到左栏...

感谢您的帮助

在 style.css 中添加此样式实际上 .title class 从与当前结构冲突的主题中获取样式,使用以下代码您可以将其删除。

.my-display-posts-format .listing-item .title{
    position:static;
    left:0;
}

一定会成功的。