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.
我正在创建一个插件,其中包含一个小部件和页面内容的简码。现在,当使用带有我的简码的页面时,我希望能够禁用小部件(或更改它的内容)。
看起来小部件代码是在页面之前加载的..这甚至可能吗?
谢谢!
看起来这是不可能的。我通过向我的小部件添加一个选项来修复它,用户必须在其中设置它不应该显示的页面。
并在小部件代码中进行简单的切换:
$currentPage = get_the_ID(); if($notToShowPage != $currentPage){ //code }