Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在通过 Wordpress 使用 Canyon Themes 的 Better Health Theme 和在线商店的 WooCommerce 插件建立一个网站。在产品上方显示发布日期和作者,知道如何删除它吗?谢谢!
您可以使用display:none;css 中的属性来隐藏日期和作者。
display:none;
例子:
.theclassname { display: none;
}