Code-Snippets-Functions/Execute a function on a child site/WooCommerce/remove-payments-menu-item-wp-admin.txt

4 lines
150 B
Text

function remove_payments_tab() {
remove_menu_page("admin.php?page=wc-settings&tab=checkout");
}
add_action("admin_menu", "remove_payments_tab", 999);