Last active
November 6, 2017 02:14
-
-
Save bhavik-kiri/6318b295169dd12c83c0755c77a13180 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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