Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created November 7, 2018 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/4a498f7f1e2419cb97bce4f7a0dc980b to your computer and use it in GitHub Desktop.
Save KaineLabs/4a498f7f1e2419cb97bce4f7a0dc980b to your computer and use it in GitHub Desktop.
Remove Profile Account Menu.
<?php
/**
* Remove Profile Account Menu.
*/
function yzc_remove_profile_account_menu( $links ) {
unset( $links['widgets'] );
return $links;
}
add_filter( 'yz_get_profile_account_menu', 'yzc_remove_profile_account_menu' );
@vvmdov
Copy link

vvmdov commented Jun 16, 2022

Hi, how can I do this BY USER ROLES?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment