Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bhavik-kiri/6318b295169dd12c83c0755c77a13180 to your computer and use it in GitHub Desktop.
Save bhavik-kiri/6318b295169dd12c83c0755c77a13180 to your computer and use it in GitHub Desktop.
<?php
add_action( 'plugins_loaded', 'wcpt_register_gift_card_type' );
function wcpt_register_gift_card_type () {
class WC_Product_Gift_Card extends WC_Product {
public function __construct( $product ) {
$this->product_type = 'gift_card'; // name of your custom product type
parent::__construct( $product );
// add additional functions here
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment