我想从事件日历中提取数据。所以我为我的事件内容类型添加了REST API支持。但我的JSON输出是HTML。
我无法获取原始数据库数据吗?
我明白了:http://astc.dk/wp-json/wp/v2/event/
我把它放在我的functions.php
中add_action( 'init', 'my_event_cpt', 25 );
function my_event_cpt() {
global $wp_post_types;
//be sure to set this to the name of your post type!
$post_type_name = 'event';
if( isset( $wp_post_types[ $post_type_name ] ) ) {
$wp_post_types[$post_type_name]->show_in_rest = true;
// Optionally customize the rest_base or controller class
$wp_post_types[$post_type_name]->rest_base = $post_type_name;
$wp_post_types[$post_type_name]->rest_controller_class = 'WP_REST_Posts_Controller';
}
}