metas = $metas; $this->post_type = pressforward( 'schema.feeds' )->post_type; $this->level = 'feed'; } public function action_hooks() { $actions = array( array( 'hook' => 'rest_api_init', 'method' => 'register_rest_post_read_meta_fields', ), ); return $actions; } public function filter_hooks() { $filter = array( array( 'hook' => 'rest_prepare_' . $this->post_type, 'method' => 'filter_wp_to_pf_in_terms', 'priority' => 10, 'args' => 3, ), ); return $filter; } }