仅在单个帖子页面中隐藏CSS类

时间:2018-12-27 作者:Roberto Meijide

我需要在我的帖子页面中隐藏一些元素,但不是在所有其他正常页面中。现在它们出现在我所有的Wordpress网站上(单篇文章、页面等)。

如何通过CSS隐藏元素?此元素只有一个类<div class="frame-content".

我可以这样做吗:if <post> then .frame-content{display:none;}?

1 个回复
SO网友:Roberto Meijide

这对我很有用:

<?php if( is_single() ) : ?>
<style id="my-internal-css">
    .frame-content {
       display: none !important;
    }
</style>
<?php endif; ?>