WordPress 侧边小工具怎么随机排序?

2022年10月9日 发表评论
免费、便宜/高性价比 服务器汇总(已更新):点击这里了解

有时可能希望侧边栏小工具随机排序显示,可以将下面代码添加到当前主题模板函数functions.php文件最后即可:

  1. add_filter ('sidebars_widgets' 'zm_randomize_widget_order'); function zm_randomize_widget_order($sidebars_widgets) { if (!is_admin()) { foreach ($sidebars_widgets as &$widget) { shuffle ($widget); } } return $sidebars_widgets;}

通过前台小工具随机排序,可以让你的网站布局不断变化,为浏览者时时展现不同内容,从而增加文章阅读量。

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: