我试图在我的主页上显示特定类别的所有帖子。该职类有70多个员额。我想有一个分页,这样只有10篇文章显示,并有分页设置,以便用户可以移动到下一页,点击页码。这是可能的吗?这是我的当前代码
global $post;
$args = array( \'numberposts\' => 5, \'offset\'=> 0, \'ORDER BY\'=>\'date\', \'order\'=>\'desc\',\'category\' => 1 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post);
// while(have_posts()):the_post();
$attrs = array(
\'src\' => $src,
\'class\' => "",
\'alt\' => get_the_title(),
\'title\' => get_the_title(),
);
谢谢
普拉迪