mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
12 lines
387 B
Text
12 lines
387 B
Text
<?php
|
|
add_filter( 'woocommerce_show_addons_page', 'wc_guy_hide_extensions_menu' );
|
|
|
|
function wc_hide_extensions_menu( $show_addons_page ) {
|
|
//an array of user ids that can access the extensions menu
|
|
$users_who_can_acess = array( 4, 8, 15, 16, 23, 42 );
|
|
if ( ! in_array( get_current_user_id(), $users_who_can_acess ) ) {
|
|
$show_addons_page = false;
|
|
}
|
|
return $show_addons_page;
|
|
}
|
|
?>
|