WC_REST_Products_V1_Controller::add_post_meta_fields() protected WC 1.0
Add post meta fields.
{} It's a method of the class: WC_REST_Products_V1_Controller{}
No Hooks.
Return
true/false|WP_Error.
Usage
// protected - for code of main (parent) or child class $result = $this->add_post_meta_fields( $post, $request );
- $post(WP_Post) (required)
- Post data.
- $request(WP_REST_Request) (required)
- Request data.
Code of WC_REST_Products_V1_Controller::add_post_meta_fields() WC REST Products V1 Controller::add post meta fields WC 5.0.0
protected function add_post_meta_fields( $post, $request ) {
return $this->update_post_meta_fields( $post, $request );
}