如何以降序显示表格中每一天的Wordpress帖子(最新帖子优先)?

我正在尝试按表中的日期顺序将每个帖子分组。

Please check the attached Image

xinkaikou 回答:如何以降序显示表格中每一天的Wordpress帖子(最新帖子优先)?

function filter_where( $where = '' ) {
// where post_date > today
$where .= " AND post_date >= '" . date('Y-m-d') . "'"; 
return $where;

} add_filter('posts_where','filter_where');

使用此代码

本文链接:https://www.f2er.com/3013343.html

大家都在问