URL details: www.xuezuowangzhan.cn/jc/wordpress/1002.html
URL title:
WordPress内置函数get_posts()详解 - 学做网站网
URL description:
WordPress提供内置函数 get_posts() ,用于获取多个文章,它的用法也非常简单。先看下下面的demo:
demo:获取随机文章
<ul>
<?php
// 获取随机文章
$args = array( 'numberposts' => 3, 'orderby' => 'rand', 'post_status' => 'publish' );
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
<li><p class=
URL last crawled:
2022-09-18
URL speed:
0.080 MB/s,
downloaded in 0.300 seconds
1 external links to this url
Only links from external domains are shown on this page.
found date
link text
from url
2022-09-18
WordPress 内置函数 get_posts() 详解