我需要将按钮添加到 WordPress 管理面板,仅在网站的主页上。如何为它创造条件?
我试过is_home()
或is_front_page()
。不工作
我怎么做?
我需要将按钮添加到 WordPress 管理面板,仅在网站的主页上。如何为它创造条件?
我试过is_home()
或is_front_page()
。不工作
我怎么做?
is_home()
并且is_front_page()
适用于前端而不是管理面板。
您可以使用$screen = get_current_screen()
来获取唯一的屏幕 id $screen->id
。请检查https://codex.wordpress.org/Function_Reference/get_current_screen