Created
November 9, 2015 13:36
-
-
Save jesseeproductions/fba316b5fe68df3b4fb7 to your computer and use it in GitHub Desktop.
Coupon Creator Pro - Show Expiration Date For Pro Image Coupons
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
/* | |
* Show Expiration Date For Pro Image Coupons | |
* @version 2.1 | |
*/ | |
add_action('cctor_print_template_functions', 'cctor_show_expiration_image_coupons' ); | |
add_action('cctor_shortcode_template_functions', 'cctor_show_expiration_image_coupons' ); | |
function cctor_show_expiration_image_coupons() { | |
add_action('cctor_img_coupon', 'cctor_pro_show_expiration', 10, 3 ); | |
add_action('cctor_print_image_coupon', 'cctor_pro_show_expiration', 10, 2 ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment