芝麻web文件管理V1.00
编辑当前文件:/home/seolotod/critterchoice.com/wp-content/themes/rehub-theme/js/bettercategory.js
jQuery(document).ready(function($) { 'use strict'; //Woocommerce and post better categories if($('.product-categories .show-all-toggle').length > 0){ $('.product-categories .show-all-toggle').each(function(){ if( $(this).siblings('ul').length > 0 ) { var $toggleIcon = $('
'); $(this).siblings('ul').hide(); if($(this).siblings('ul').is(':visible')){ $toggleIcon.addClass( 'open' ); $toggleIcon.html('
'); } $(this).on( 'click', function(){ $(this).siblings('ul').toggle( 'fast', function(){ if($(this).is(':visible')){ $toggleIcon.addClass( 'open' ); $toggleIcon.closest('.closed-woo-catlist').removeClass('closed-woo-catlist'); $toggleIcon.html('
'); }else{ $toggleIcon.removeClass( 'open' ); $toggleIcon.html('
'); } }); return false; }); $(this).append($toggleIcon); } }); } });