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 }