我已经获得以下代码来显示所有类别和类别中的最后一篇文章 - 使用Wordpress:
foreach( $categories as $category ) {
$category_link = sprintf(
'<a href="%1$s" alt="%2$s">%3$s</a>',
esc_url( get_category_link( $category->term_id ) ),
esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ),
$category->name ) ),
esc_html( $category->name )
);
global $post;
$args = array( 'posts_per_page' => 1, 'category' => $category->term_id);
$myposts = get_posts( $args );
foreach ( $myposts as $post ) : setup_postdata( $post );
$newpost="<a href=".get_the_permalink()."><b>".get_the_title()."</b></a>
$newdate=get_the_date();
endforeach;
现在,类别按字母顺序排序。
有没有办法按照上一篇文章的日期对它们进行排序?
我想过在第一行写一个参数,如:
foreach( $categories as $category sort by ... )
但我找不到办法。
也许你可以帮忙?
感谢您的帮助!
刚刚找到这个工作代码: get_categories order by last post
答案 0 :(得分:-2)
您可以对$ categories的记录进行排序,例如:
$categories = array('post_status'=>'publish','post_type' => 'test', 'orderby' =>
'date', 'order' => 'DESC','paged' => $paged );