如何使用JSON api仅获取我的WordPress博客的所有帖子的帖子标题,摘录。
目前,我正在使用https://www.example.com/wp-json/wp/v2/posts,它会返回大量数据,从而减慢整个过程。是否有任何网址我只能获取选定的字段?
答案 0 :(得分:0)
您是否考虑过编写自己的API端点? https://developer.wordpress.org/rest-api/extending-the-rest-api/adding-custom-endpoints/
这样的事情可能适用于您的端点变为http://example.com/wp-json/myplugin/v1/post-titles:
function my_awesome_func( $data ) {
$args = array(
'post_type' => 'post',
);
$query = new WP_Query( $args );
$arr = array();
while ( $query->have_posts() ) {
$query->the_post();
$titles = get_the_title();
array_push($arr, $titles);
}
return $arr;
}
add_action( 'rest_api_init', function () {
register_rest_route( 'myplugin/v1', '/post-titles', array(
'methods' => 'GET',
'callback' => 'my_awesome_func',
) );
} );