因为您使用的是文本小部件,所以我建议您这样做。。。
如果您的小部件上有这样的链接,
<a href="#">link 1</a>
<a href="#">link 2</a>
<a href="#">link 3</a>
<a href="#">link 4</a>
您可以基于body类向其添加一个类。您可以通过查看页面源在浏览器中检查您的页面。如果你的主题写得很好,你应该
postid-208
在你的班级
<body
标签
现在,我们可以将它作为类添加到您的链接中,然后使用css隐藏它。如果要将链接1隐藏在该页面中,请执行以下操作:
<style>
.postid-208 .postid-208 {
display: none !important;
}
</style>
<a href="#" class="postid-208">link 1</a>
<a href="#">link 2</a>
<a href="#">link 3</a>
<a href="#">link 4</a>
对于其他人,我会假设一些类,然后它会是这样的。。。
<style>
.postid-208 .postid-208,
.postid-209 .postid-209,
.postid-211 .postid-211,
.postid-231 .postid-231 {
display: none !important;
}
</style>
<a href="#" class="postid-208">link 1</a>
<a href="#" class="postid-209">link 2</a>
<a href="#" class="postid-211">link 3</a>
<a href="#" class="postid-231">link 4</a>