简体   繁体   中英

Shuffle slide in Divi Wordpress

I have a full screen slide using Divi on Wordpress. How can I make shuffle for the people not see the same image every time they enter on the website? Thanks!!

Jakuya

I think this code will help you. Just go to to divi > theme option > integration tab > Add code to the < head > of your blog and paste in the code below

<script type="text/javascript">
jQuery(document).ready(function(){
  var item = document.querySelector('.et_pb_slider .et_pb_slides');
  if(item!=null){
    for (var i = item.children.length; i >= 0; i--) {
      item.appendChild(item.children[Math.random() * i | 0]);
    }
  }
});
</script>

Try this , and let me know the result, if it works.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM