Skip to content

Instantly share code, notes, and snippets.

@dennisnissle
Created August 17, 2018 09:01
Show Gist options
  • Save dennisnissle/ba5625f6f7005836bb2b0c514bf54495 to your computer and use it in GitHub Desktop.
Save dennisnissle/ba5625f6f7005836bb2b0c514bf54495 to your computer and use it in GitHub Desktop.
Add your own invoice shortcode example
<?php
add_filter( 'wc_gzdp_invoice_shortcodes', 'my_child_add_invoice_shortcode', 10, 1 );
function my_child_add_invoice_shortcode( $shortcodes ) {
$shortcodes['example_shortcode_name'] = 'my_child_example_shortcode_name';
return $shortcodes;
}
function my_child_example_shortcode_name( $atts, $content = '' ) {
$order = WC_GZDP_Invoice_Shortcodes::get_order();
if ( ! $order ) {
return;
}
// Check the order and output your data/content
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment