如何按天显示帖子类别列表

时间:2020-04-07 作者:Heri Suryatno

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. ?

1 个回复
SO网友:Sabry Suleiman

有一种更好的方法date_query WP\\U查询类的属性:

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

相关推荐

重置插件版本缓存|PRE_SET_SITE_TRANSPENT_UPDATE_PLUGINS

在我的插件中,我使用这些过滤器进行自动更新并检查许可证。add_filter( \'pre_set_site_transient_update_plugins\', array( &$this, \'check_for_update\' ) ); add_filter( \'plugins_api\', array( &$this, \'plugin_api_call\' ), 10, 3 ); 但正如我所看到的,WordPress在我的插件中更改了版本标签后,会调用该过