Advertisement
arie_cristianD

add custom url in account page

Aug 25th, 2024
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1.  
  2. add_action(
  3.     'jnews_after_account_nav',
  4.     function () {
  5.  
  6.         ?>
  7.  
  8.                 <div class="jeg_account_nav" style="margin-top: -25px;">
  9.                     <ul>
  10.                             <li>
  11.                                 <a href="http://your-custom-page-url">Custom Page</a>
  12.                             </li>
  13.                     </ul>
  14.                 </div>
  15.         <?php
  16.     }
  17. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement