WC_Abstract_Legacy_Product::get_parent
Deprecated since 3.0.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Get the parent of the post.
Method of the class: WC_Abstract_Legacy_Product{}
Hooks from the method
Returns
Int.
Usage
$WC_Abstract_Legacy_Product = new WC_Abstract_Legacy_Product(); $WC_Abstract_Legacy_Product->get_parent();
Changelog
| Deprecated since | 3.0.0 |
WC_Abstract_Legacy_Product::get_parent() WC Abstract Legacy Product::get parent code WC 10.7.0
public function get_parent() {
wc_deprecated_function( 'WC_Product::get_parent', '3.0', 'WC_Product::get_parent_id' );
return apply_filters( 'woocommerce_product_parent', absint( $this->get_post_data()->post_parent ), $this );
}