wordpress:无插件实现“相关文章”和“随机文章”

内容来源于网络!

随机文章:

<p>随机文章</p>

<?php $args = array( 'numberposts' => 5, 'orderby' => 'rand', 'post_status' => 'publish' ); 
$rand_posts = get_posts( $args ); 
foreach( $rand_posts as $post ) : ?> 
<a href="<?php the_permalink(); ?>" rel="external nofollow" rel="external nofollow" >
<?php the_title(); ?></a> 
<?php endforeach; ?>

编辑整理:数学课,如若转载,请注明出处:https://www.shuxueke.net/2022/12/8.html

(0)
数学课的头像数学课
上一篇 2022年12月3日 下午1:33
下一篇 2022年12月3日 下午2:01

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注