0

我试图在我将列表作为简码插入的位置显示相关帖子的列表,但隐藏由我的相关帖子插件(MicroKids)自动插入的列表。我已经为简码生成的列表分配了一个类;我无法对自动插入的列表进行任何更改。

例如,在http://www.litquake.org/calendar-of-events/the-future-that-never-was上,您会看到作者姓名列表(以 Murray、Tina Marie 开头)显示在地图(我要显示的插入短代码的列表)和重复显示在地图下方的作者姓名列表(我要隐藏的自动插入列表)。

这是代码的简化版本:

<div class="entry-content clearfix">
<p>
<div class="show-related-posts" style="padding-left: 30px;">
<div class="related-posts">
</div>
<div id="em-location-map-ca500" class="em-location-map" style="background: none repeat scroll 0% 0% rgb(205, 205, 205); width: 400px; height: 300px; position: relative; overflow: hidden;">
<div id="em-location-map-info-ca500" class="em-location-map-info" style="display:none; visibility:hidden;"> </div>
<div id="em-location-map-coords-ca500" class="em-location-map-coords" style="display:none; visibility:hidden;">
<div class="related-posts">
<div id="related-posts-MRP_all" class="related-posts-type">
</div>

有谁知道我如何定位列表中的一个而不是另一个?

4

1 回答 1

2

你有两个选择:

  1. 要么给他们一个额外的类class="related-posts related-posts-1",然后使用该类选择它。

  2. 或者,您可以使用.related-posts:first-childor.related-posts:last-child作为选择器。

于 2013-08-31T04:48:46.603 回答