(function($){ // <----- Начало обертки
/**
* Immediate execution
*/
console.log();
/**
* When DOM is ready
*/
$(document).ready(function(){
});
/**
* When all content is loaded
*/
$(window).load(function(){
}); // window.load END
})(jQuery); // <----- Конец обертки
add_filter('request', 'my_request', 9999, 1);
function my_request($query){
$url = urldecode($_SERVER['REQUEST_URI']);
if ($url == '/tax/term_new/')
$query['название таксономии'] = 'название термина';
return $query;
}
$(document).ready(function(){
var timer, tabs = $('a[data-toggle="tab"]');
if(tabs) {
var i = 1, tabs_count = tabs.length-1;
timer = setInterval(function(){
$(tabs[i]).tab('show');
if(i === tabs_count){
i = 0;
} else {
i++;
}
}, 1000);
}
$('li').click(function(e){
clearInterval(timer);
});
});