Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'jnews_account_page_endpoint', 'change_account_page_menu', 99 );
- function change_account_page_menu( $endpoint ) {
- $endpoint = array(
- 'account' =>
- array(
- 'slug' => 'account',
- 'label' => 'my_account',
- 'title' => 'My Account',
- ),
- 'edit_account' =>
- array(
- 'slug' => 'edit-account',
- 'label' => 'edit_account',
- 'title' => 'Edit Account',
- ),
- 'change_password' =>
- array(
- 'slug' => 'change-password',
- 'label' => 'change_password',
- 'title' => 'Change Password',
- ),
- 'post_view_stats' =>
- array(
- 'title' => 'Post View Stats',
- 'label' => 'post_view_stats',
- 'slug' => 'post-view-stats',
- ),
- 'my_post' =>
- array(
- 'title' => 'My Post',
- 'label' => 'my_post',
- 'slug' => 'my-post',
- ),
- 'jnews_paywall_sub' =>
- array(
- 'title' => 'Subscription',
- 'slug' => 'my-subscription',
- 'label' => 'my_subscription',
- ),
- 'liked' =>
- array(
- 'title' => 'Liked Post',
- 'slug' => 'liked-post',
- 'label' => 'liked_post',
- ),
- 'disliked' =>
- array(
- 'title' => 'Disliked Post',
- 'slug' => 'disliked-post',
- 'label' => 'disliked_post',
- ),
- );
- return $endpoint;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement