隐藏WordPress ID上的div类(基于模板)

时间:2020-02-28 作者:Henry

真的不知道我为什么在这里挣扎,但我试图隐藏这个div:

<div class="qodef-post-info-category"> content here which I want to HIDE on this template only </div>
我原以为这会管用,但没有乐趣

    body.single-doctor.qodef-post-info-category { 
     display: none; 
}
这是WordPress正文标记元信息:

<body class="doctor-template-default single single-doctor postid-4633 qode-core-1.1.1 blush child-child-ver-1.0.1 blush-ver-1.3 qodef-smooth-page-transitions qodef-smooth-page-transitions-fadeout qodef-grid-1100 qodef-sticky-header-on-scroll-down-up qodef-dropdown-default qodef-header-standard qodef-menu-area-shadow-disable qodef-menu-area-in-grid-shadow-disable qodef-menu-area-border-disable qodef-menu-area-in-grid-border-disable qodef-logo-area-border-disable qodef-logo-area-in-grid-border-disable qodef-side-menu-slide-from-right qodef-default-mobile-header qodef-sticky-up-mobile-header wpb-js-composer js-comp-ver-6.0.5 vc_responsive" itemscope itemtype="//schema.org/WebPage">
它必须根据模板隐藏。。。

谢谢你的帮助。

PS我也试过了!important 没有快乐。。。

1 个回复
最合适的回答,由SO网友:Diego Somar 整理而成

将CSS更改为:

body.single-doctor .qodef-post-info-category { 
    display: none; 
}
元素之间必须有空格声明。

相关推荐

古腾堡在不修改主题的情况下增加了css类?

要添加的“高级”选项Additional CSS Classes 古腾堡街区看起来很有用。但是除了去添加一个主题范围的类之外,还有什么方法可以定义一个CSS类用于该post选项吗?我希望有某种方法可以修改特定块上的CSS,而不必将其转换为HTML块。Example: 在我要设置的一个列表块的一个帖子上ul {padding-left:2em}. 这是一次性的事情。我不希望它应用于该帖子或任何其他帖子上的其他列表块,因此我不想经历创建子主题并将其添加到其style.css.