首页 > 网站 > 建站经验 > 正文

WordPress无插件调用随机文章的方法

2024-04-25 20:41:42
字体:
来源:转载
供稿:网友

<ul>

<?php

global $post;

$postid = $post->ID;

$args = array( 'orderby' => 'rand', 'post__not_in' => array($post->ID), 'showposts' => 10);

$query_posts = new WP_Query();

$query_posts->query($args);

?>

<?php while ($query_posts->have_posts()) : $query_posts->the_post(); ?>

<li><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>

<?php endwhile; ?>

</ul>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表