[Code] Excelsheet-wppost-restapi : Get Post Method

  /////////////////////////////////////////////// /// START : GET Endpoint for WP REST API /// /////////////////////////////////////////////// function get_post_callback($request) { $id = $request[‘id’]; $cur_post_type = get_post_type($id); $builtin_types = [‘post’, ‘page’]; // builtin type if(in_array($cur_post_type, $builtin_types)) { // $post = get_post($id); if ( ! $post ) { return new WP_Error(‘post_not_found’, ‘Post not found’, array(‘status’ => 404)); } else { $data … Read more