Please help me
我想根据订购日期的名称根据所选类别创建一个列表
我有这样的代码,但不起作用orderby day
<?php
$args = array( \'posts_per_page\' => 100, \'offset\'=> 0,
\'category\' => 338,\'order\'=> \'asc\', \'orderby\' => \'day\');
$myposts = get_posts( $args );
foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
<tr>
<td><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></td>
<td><?php the_time(\'l\'); ?></td>
<td><?php the_time(\'H:i\'); ?> Wib</td>
</tr>
<?php endforeach;
wp_reset_postdata();?>
1周等于7天
how to make wordpres code sorted by day. ?