有没有办法删除“帮助”选项卡?我希望删除这些选项卡,而不是用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 }