admin管理员组

文章数量:1390956

Please help me

I want to make a list based on the name of the day ordered based on the selected category

I have code like this but it doesn't work 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 week is equal to 7 days how to make wordpres code sorted by day. ?

Please help me

I want to make a list based on the name of the day ordered based on the selected category

I have code like this but it doesn't work 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 week is equal to 7 days how to make wordpres code sorted by day. ?

Share Improve this question edited Apr 9, 2020 at 10:51 fuxia 107k39 gold badges255 silver badges459 bronze badges asked Apr 7, 2020 at 22:17 Heri SuryatnoHeri Suryatno 1
Add a comment  | 

1 Answer 1

Reset to default 0

There is a better method using date_query property of WP_Query class:

'date_query'    => array(
        'column'  => 'post_date',
        'after'   => '- 1 days'
)

本文标签: dateHow to display posts categori list by day wordpres