Created
July 5, 2019 15:02
-
-
Save yousufansa/5bae4444da9891c43c461edfca51f03f to your computer and use it in GitHub Desktop.
Vodi - Add Menu Item on Header User Dropdown Menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ( ! function_exists( 'vodi_child_modify_header_user_account_menu_items' ) ) { | |
function vodi_child_modify_header_user_account_menu_items( $user_account_menu_items ) { | |
$user_account_menu_items['example'] = array( | |
'title' => __( 'Example', 'vodi-child' ), | |
'href' => 'www.google.com', | |
); | |
return $user_account_menu_items; | |
} | |
} | |
add_filter( 'vodi_header_user_account_menu_items', 'vodi_child_modify_header_user_account_menu_items', 10 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment