wordpressのヘルプタブを削除する方法はありますか? これらのタブを削除して、CSSで非表示にしないようにしています。Wordpressのヘルプタブを削除
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 }
http://wordpress.stackexchange.com – chrisjlee