Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ajax auto refresh and rand /mt_rand image wordpress
- // first make a folder named images then put 0-9 image into (images) || image extension take care change when <img src="">
- <script>
- function updateCount () {
- jQuery("#counter").load(" ",function () {});
- }
- jQuery(function () {
- setTimeout(updateCount, 3000);
- });
- </script>
- <div id="counter">
- <table width="0" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <?php
- // $directory = get_template_directory_uri();
- echo '<td><img style="width:500px;height:300px;transition:ease 0.9s all"
- src="'.get_template_directory_uri().'/images/'.mt_rand(0,9).'.jpg" alt="." border="0" /></td>';
- ?>
- </tr>
- </table>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement