mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
8 lines
299 B
Text
8 lines
299 B
Text
function wc_hide_woocommerce_menus() {
|
|
//Hide "WooCommerce → Marketplace".
|
|
remove_submenu_page('woocommerce', 'wc-addons');
|
|
//Hide "WooCommerce → My Subscriptions".
|
|
remove_submenu_page('woocommerce', 'wc-addons§ion=helper');
|
|
}
|
|
|
|
add_action('admin_menu', 'wc_hide_woocommerce_menus', 71);
|