你为什么不试试WP API?
然后,您可以从这样的URL中提取帖子。。。
http://subdomain.example.com/wp-json/posts
您还可以设置自定义post类型以使用WP API,然后以类似的方式访问它们,您需要将以下内容添加到您的CPT参数中:
$args = array(
//...
\'show_in_rest\' => true,
\'rest_base\' => \'books-api\',
\'rest_controller_class\' => \'WP_REST_Posts_Controller\',
)
);
请看一下:
http://v2.wp-api.org/extending/custom-content-types/您甚至可以像这样使用WP\\u查询参数:
http://subdomain.example.com/wp-json/posts?filter[posts_per_page]=2&filter[order]=ASC
您可以使用jQuery。getJSON()获取跨域数据:
$.getJSON(\'http://subdomain.example.com/wp-json/posts\', function (data) {
console.log(data);
});