рони,
Спасибо.
Не совсем понял как применить Ваш код из той темы к моему сайту.
У меня код должен быть такой как я понял:
$(function() {
var parent = $(".gg"),
title = $(".the_time", parent),
i = 0,
len = title.length,
timer;
title.each(function(indx, element) {
$(this).mouseenter(function() {
i = indx;
show(true)
})
});
function show(hold) {
window.clearTimeout(timer);
title.removeClass("active").eq(i).addClass("active");
content.removeClass("active").eq(i).addClass("active");
if (!hold) {
i = ++i % len;
timer = window.setTimeout(show, 3E3)
}
}
parent.mouseleave(function() {
show(false)
})
});
Но как мне вывести для каждого слайда свои картинки, ведь у меня табов на сайте нет? У меня простой вывод записей из WordPress. Код такой:
<div class="gg">
<?php
$my_posts = get_posts('numberposts=4&category=5&orderby=date');
foreach ($my_posts as $post) :
setup_postdata($post); ?>
<p class="p1"><a href="<?php the_permalink(); ?>">
<div class="the_time">
<span class="date_news"><?php the_time ('d.m.Y'); ?></span>
<span class="aa"><?php the_title(); ?></span></a></p>
</div>
<?php endforeach; ?>
</div>