Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'jnews_dropdown_link', 'j_remove_woo_edit_account', 99 );
- function j_remove_woo_edit_account( $dropdown ) {
- if ( is_user_logged_in() ) {
- if ( isset( $dropdown['edit-account'] ) ) {
- unset( $dropdown['edit-account'] );
- }
- }
- return $dropdown;
- }
Advertisement
Add Comment
Please, Sign In to add comment