Guest User

Untitled

a guest
Mar 7th, 2014
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. add_action("wp_footer","kleo_disable_profile_links", 11);
  2. function kleo_disable_profile_links() {
  3. ?><script>
  4. jQuery(document).ready(function() {
  5.     jQuery(".section-members .item-list a").attr("href","#");
  6.     jQuery(".section-members .item-list a").on("click", function(e) {
  7.         e.preventDefault();
  8.     });
  9. });
  10. </script>
  11. <?php  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment