ajax加载后猫头鹰旋转木马没有工作

我使用jquery 1.11和这个代码到侧边栏中的ajax加载wordpresspost内容。 一切都很好,但猫头鹰旋转木马的jqueryfunction不起作用,并且邮件内容中的旋转木马没有显示任何内容。 ajaxify代码加载post内容:

$(document).ready(function(){ $.ajaxSetup({cache:false}); $(".post-link").click(function(){ var post_link = $(this).attr("href")+' #content'; $("#single-post-container").html("loading ..."); $("#single-post-container").load(post_link); return false; }); }); 

有没有办法解决这个问题和冲突? 最好的祝福。

这对我有用:

 jQuery(function () { jQuery(document).ready(function () { setInterval(function () { jQuery(".owl-carousel").owlCarousel(); }, 1500); }); });