Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('jnews_dropdown_link', function ($dropdown) {
- if ( is_user_logged_in() )
- {
- $item = [];
- $item['subscribe'] = array(
- 'text' => 'Subscription',
- 'url' => esc_url( home_url_multilang( 'account/my-subscription' ) )
- );
- $item['unlock'] = array(
- 'text' => 'Unlocked Posts',
- 'url' => esc_url( home_url_multilang( 'account/unlocked-posts' ) )
- );
- $dropdown = array_merge( $item, $dropdown );
- }
- return $dropdown;
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement