Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- *
- * Add User Profile menu items
- *
- * @icon https://streamtube.marstheme.com/icons/
- *
- */
- add_filter( 'streamtube/core/user/profile/menu/items', function( $items ){
- $items['my-link-1'] = array(
- 'title' => esc_html__( 'My Link 1', 'streamtube-core' ),
- 'icon' => 'icon-cog',
- 'url' => home_url( 'my-link-1' ),
- 'priority' => 10,
- 'private' => false
- );
- $items['my-link-2'] = array(
- 'title' => esc_html__( 'My Link 2', 'streamtube-core' ),
- 'icon' => 'icon-star',
- 'url' => home_url( 'my-link-2' ),
- 'priority' => 11,
- 'private' => true
- );
- return $items;
- }, 10, 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement