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

时间:2018-06-25 12:01:05

标签: wordpress shortcode visual-composer

我正在尝试使用[display-posts]短代码使用Visual Composer在WordPress页面中在线添加最近发布的列表。但是,每当我这样做时,帖子的标题和链接就会显示在它们应位于的左侧一列-我指定的[display-posts]列中只有帖子的日期(如果要求include_date的话) =“ true”),或空白的项目符号(如果未要求)。

有人知道我在做什么错吗?我将一些屏幕截图作为示例。

设置了Visual Composer-帖子列表应在右列...

Visual Composer set up - the list of posts should be in the right column...

页面结果-lins和帖子标题似乎已经溢出到左列...

Result on page - the lins and post titles seem to have spilled over to the left column

谢谢您的帮助

1 个答案:

答案 0 :(得分:0)

在style.css中实际上添加此样式。标题类从主题中获取样式,该样式与当前结构冲突,您可以通过以下代码将该样式删除。

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

它肯定会工作。