解决 WP Dialog 插件与滑动解锁冲突

黑色理想 2021年5月16日00:00:00技术分享评论7511字阅读1分42秒

张戈这个滚动条插件貌似很受欢迎,不过与Begin主题的滑动解锁有冲突,大概的原因是插件调用随机文章的函数是query_posts,干扰了滑动解锁的加载,解决办法,改为使用 WP_Query调用随机文章:

打开WP Dialog 插件scroll-bar.php文件,将大约21行开始的:

  1. <?php
  2.     wp_reset_query();
  3.     query_posts( array ( 'orderby' => 'rand', 'showposts' => 5, 'ignore_sticky_posts' => 10 ) ); while ( have_posts() ) : the_post();
  4. ?>

替换为:

  1. <?php
  2.     wp_reset_query();
  3.     $loop = new WP_Query( array ( 'orderby' => 'rand', 'showposts' => 5, 'ignore_sticky_posts' => 10 ) );
  4.     while ( $loop->have_posts() ) : $loop->the_post();
  5. ?>

之后,覆盖替换原文件即可。

待续.....

黑色理想
  • 本文由 发表于 2021年5月16日00:00:00
  • 转载请务必保留本文链接:http://ilhc.cc/1562.html
5种方法获取Bing每日图片 技术分享

5种方法获取Bing每日图片

写在前面的:大家都知道微软的Bing搜索引擎首页每天都会提供了一些有趣的图片,而这些图片很多都是有故事含义的,很多网友每天去访问bing首页都是为了这些图片而去的。那么怎么Download下来呢,下面...
匿名

发表评论

匿名网友 填写信息

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