tax_exempt_field_display_admin_order_meta
The Woocommerce Super Simple Tax Exemption tax exempt field display admin order meta function.
Description
tax_exempt_field_display_admin_order_meta( $order );
Parameters (1)
- 0. $order
- The order.
Usage
if ( !function_exists( 'tax_exempt_field_display_admin_order_meta' ) ) { require_once ABSPATH . PLUGINDIR . 'woocommerce-super-simple-tax-exemption/simple-tax-exemption.php'; } // The order. $order = null; // NOTICE! Understand what this does before running. $result = tax_exempt_field_display_admin_order_meta($order);
Defined (1)
The function is defined in the following location(s).
- /simple-tax-exemption.php
- function tax_exempt_field_display_admin_order_meta($order) {
- echo '<p><strong>'.__('Tax Exempt ID').':</strong> ' . get_post_meta($order->id, 'Tax Exempt ID', true) . '</p>';
- }