mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-06 12:42:25 +08:00
10 lines
424 B
Text
10 lines
424 B
Text
function wc_hide_marketing_woocommerce_menus() {
|
|
//Hide "Marketing".
|
|
remove_menu_page('woocommerce-marketing');
|
|
//Hide "Marketing → Overview".
|
|
remove_submenu_page('woocommerce-marketing', 'admin.php?page=wc-admin&path=/marketing');
|
|
//Hide "Marketing → Coupons".
|
|
remove_submenu_page('woocommerce-marketing', 'edit.php?post_type=shop_coupon');
|
|
}
|
|
|
|
add_action('admin_menu', 'wc_hide_marketing_woocommerce_menus', 71);
|