Advertisement
cipher87

Untitled

Feb 3rd, 2021
804
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. function category_description_toggle(){
  2. ?>
  3. <script>
  4. (function () {
  5.     jQuery(document).ready(function ($) {
  6.         let desc = $('#portfolio-category-description');
  7.         $('#js_sort_items a').on('click', function() {
  8.             let filter = $(this).data("filter");
  9.             desc.find('div').hide();
  10.             desc.find(`.${filter}`).show();
  11.         });
  12.     });
  13. })();    
  14. </script>
  15. <?php
  16. }
  17.  
  18. add_action('wp_footer', 'category_description_toggle');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement