如何在wordpress的特定页面中定位课程

时间:2018-09-21 15:15:25

标签: css wordpress

我知道.postid-81将在wordpress中定位特定的帖子页面,但是如果我想一次定位更多id,该怎么办 这是我的代码,但是不起作用

 .postid-81, .postid-99  .featured-img .caption {
 display:none !important;
 }

编辑:我想完全像这样

 .postid-81 .featured-img .caption, .postid-99 .featured-img .caption{
display:none !important;
}

但是由于我希望定位超过8页,因此有没有办法使代码最小化,而不必每次都重复.featured-img .caption?

1 个答案:

答案 0 :(得分:0)

您可以这样尝试

div[class^="postid-"] .featured-img .caption {
  display:none !important;
}

它定位所有具有以“ postid-”开头的类的div