您好,我正在尝试从wordpress rest api创建自定义api。
我有一个“获取帖子”功能,可以从我的wordpress网站获取所有帖子。
但是此端点的回调没有在ACF中创建的自定义字段。如何将这些添加到我的回调函数中?
我尝试使用'meta_query'属性,但是当我这样做时,无法在wordpress中激活我的插件。
这是我的功能
function all_posts() {
$args = array(
'numberposts' => 100,
'category' => 0, 'orderby' => 'date',
'post_content' => wp_strip_all_tags('post_content'),
'order' => 'ASC', 'include' => array()
);
$posts = get_posts($args);
if (empty($posts)) {
return new WP_Error( 'empty_category', 'there is no post in this category', array('status' => 404) );
}
$response = new WP_REST_Response($posts);
$response->set_status(200);
return $response;
}
它不会将我的自定义字段添加到我的回调中。 谁能帮我这个忙,我仍然是wordpress的新手,很抱歉,这是一个不好的问题。
谢谢!