如题,使用源码的方式实现点击按钮打开随机文章。具体步骤如下:
新建名为page-random.php
的文件,输入如下代码,以utf-8
编码保存。
<?php $rand_post=get_posts('numberposts=1&orderby=rand'); foreach($rand_post as $post) : ?> <script> location="<?php the_permalink(); ?>";</script> <?php endforeach; ?>
将这个文件上传到当前主题目录下。
登录管理后台,新建页面,页面别名:random
。
然后在需要的地方使用a
标签调用这个页面的 url 即可。比如我将这个页面的 url 设置成了:https://everycountry.xyz/random/,那么我的按钮代码:
<a href="https://everycountry.xyz/random/">随机看看</a>