WC_REST_Legacy_Products_Controller::add_post_meta_fields() protected WC 1.0
Deprecated from version 3.0.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.╳
Add post meta fields.
{} It's a method of the class: WC_REST_Legacy_Products_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.
Changelog
Deprecated | 3.0.0 |
Code of WC_REST_Legacy_Products_Controller::add_post_meta_fields() WC REST Legacy Products 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 );
}