有什么方法可以删除 wordpress 上的帮助标签?我希望删除这些选项卡而不是用 css 隐藏它们。
在 wp-admin/includes/screen.php 上有几行提到了这一点,但不知道如何创建一些东西来删除帮助选项卡。
有什么方法可以创建类似于:add_filter('screen_options_show_screen', '__return_false');
但要删除帮助选项卡?
从 screen.php 文件中:
647 /**
648 * Removes a help tab from the contextual help for the screen.
649 *
650 * @since 3.3.0
651 *
652 * @param string $id The help tab ID.
653 */
654 public function remove_help_tab( $id ) {
655 unset( $this->_help_tabs[ $id ] );
656 }
657
658 /**
659 * Removes all help tabs from the contextual help for the screen.
660 *
661 * @since 3.3.0
662 */
663 public function remove_help_tabs() {
664 $this->_help_tabs = array();
665 }