我正在尝试通过WordPress REST API 2.0-beta15
&获取(过滤)在特定日期之后修改的帖子。 WordPress v4.8.3
并使用我的客户端应用中的现有帖子进行更新。
使用WordPress提供的after
和before
查询参数我可以根据date
而不是modified
字段过滤帖子。
我已使用https://github.com/WP-API/rest-filter提及/wp-json/wp/v2/posts?filter[date_query][0][column]=post_modified_gmt&filter[date_query][0][after]=1+month+ago
,in this issue,但此date_query
过滤器现在也无效。
我需要像
这样的选项http://bankersdaily.in/wp-json/wp/v2/posts?modified_after=2017-10-31T13:32:10&_envelope http://bankersdaily.in/wp-json/wp/v2/posts?after=2017-10-31T13:32:10&field=modified&_envelope
参考文献:
https://developer.wordpress.org/rest-api/reference/posts/#list-posts https://codex.wordpress.org/Class_Reference/WP_Query?#Date_Parameters
答案 0 :(得分:6)
看起来它不受支持,浏览docs
以下是一些解决方法:
1)自定义modified_after
其余查询参数
我们可以为modified_after
帖子类型添加post
其余查询参数:
add_filter( 'rest_post_collection_params', function( $query_params ) {
$query_params['modified_after'] = [
'description' => __( 'Limit response to posts published after a given ISO8601 compliant date.' ),
'type' => 'string',
'format' => 'date-time',
];
return $query_params;
} );
然后使用以下命令修改其余的帖子查询:
add_filter( 'rest_post_query', function( $args, $request ) {
if( isset( $request['modified_after'] ) && ! isset( $request['after'] ) ) {
$args['date_query'][0]['after'] = $request['modified_after'];
$args['date_query'][0]['column'] = 'post_modified';
}
return $args;
}, 10, 2 );
我们让after
优先于modified_after
。
示例:强>
/wp-json/wp/v2/posts??modified_after=2017-11-07T00:00:00
备注:强>
我们可能已将modified_gmt_after
用于post_modified_gmt
列。
使用比modified_after
更独特的名称可能更好,以避免将来可能发生名称冲突。
要将此扩展到其他帖子类型,我们可以使用rest_{$post_type}_collection_params
和rest_{$post_type}_query
过滤器。
另一种选择是创建自定义端点和参数,这是一项更多的工作。这当然是一个问题,我们是否应该为当前的休息api添加自定义参数。在某些情况下,它应该没问题,因为我们没有删除或修改响应,也没有改变其他参数的工作方式。
2)自定义date_query_column
其余查询参数
另一种方法是引入自定义date_query_column
休息查询参数:
add_filter( 'rest_post_query', function( $args, $request ) {
if ( ! isset( $request['before'] ) && ! isset( $request['after'] ) )
return $args;
if( isset( $request['date_query_column'] ) )
$args['date_query'][0]['column'] = $request['date_query_column'];
return $args;
}, 10, 2 );
add_filter( 'rest_post_collection_params', function( $query_params ) {
$query_params['date_query_column'] = [
'description' => __( 'The date query column.' ),
'type' => 'string',
'enum' => [ 'post_date', 'post_date_gmt', 'post_modified', 'post_modified_gmt', 'comment_date', 'comment_date_gmt' ],
];
return $query_params;
} );
如果设置了after
或before
参数,则可用。
示例:强>
/wp-json/wp/v2/posts??after=2017-11-07T00:00:00&date_query_column=post_modified
希望它有所帮助!
答案 1 :(得分:0)
我创建了一个WordPress插件WP REST API – Filter posts date wise using given column,需要的人可以使用它。
使用此插件,我们可以指定列(date
,date_gmt
,modified
,modified_gmt
中的任意一个)作为查询参数date_query_column
来查询值(s)在before
和/或after
查询参数中给出。
使用date_query_column
或/wp/v2/posts
等任何后端点上的/wp/v2/pages
参数以及before
和/或after
参数。
/wp-json/wp/v2/posts??after=2017-11-08T13:07:09&date_query_column=modified
答案 2 :(得分:0)
从 WordPress 5.7 开始,添加了对按帖子修改日期而不是发布日期进行查询的支持。不再需要自定义解决方法。
用法:
WidgetsBinding.instance.addPostFrameCallback((_){
_tasksEmpty.value = tasks.isEmpty;
});
注意:https://make.wordpress.org/core/2021/02/23/rest-api-changes-in-wordpress-5-7/