当用户刷新页面或导航到不同的页面时,侧边栏上有不同的广告


Different ad on sidebar when user refreshes page or navigates to different page

我有一个带有广告部分的边栏。当用户导航到不同的页面或刷新页面时,我想在该部分显示不同的广告。我想旋转大约5-10个广告。每个广告是一个脚本,因此有超过10个广告会减慢我的页面。在刷新或用户导航到不同页面时,旋转广告的最佳方法是什么?这是我的wordpress博客,但我不喜欢使用插件。

JS小提琴

<?php 
  $ads = array("ad code goes here", "more ad code", "more ad code");
  shuffle($ads);
  print $ads;
 ?>

我试过了,但是没有运气。我认为javascript会更合适。或者什么是最适合的,而不是减慢我的网页

试试这个

<?
$input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
$rand_keys = array_rand($input, 1);
echo $input[$rand_keys];
?>

thank you try this