Advertisement
arie_cristianD

add_account_list_on_mobile_nav

Aug 21st, 2023
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1.  
  2. add_action(
  3.     'wp_footer',
  4.     function() {
  5.         ?>
  6.     <script>
  7.         (function($){
  8.             $(document).on('ready', function() {
  9.                 let newLink = `<li><a href="example.com"><i class="fa fa-user"></i> Example</a></li>`
  10.                 $('.profile_links').append(newLink);
  11.             });
  12.         })(jQuery);
  13.     </script>
  14.  
  15.         <?php
  16.     }
  17. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement