Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'jnews_dropdown_link', 'additional_link_my_account' );
- function additional_link_my_account( $dropdown ) {
- if ( is_user_logged_in() ) {
- $item['customer'] = array(
- 'text' => 'Customer', /* dropwon link Text */
- 'url' => 'https://jnews.io/', /* dropwon link URL */
- );
- if ( isset( $item ) ) {
- $dropdown = array_merge( $item, $dropdown );
- }
- }
- return $dropdown;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement