Code-Snippets-Functions/Execute a function on a child site/WooCommerce/add-payment-method-to-admin-new-order.txt
2019-03-29 09:41:37 -06:00

7 lines
301 B
Text

add_action( 'woocommerce_email_after_order_table', 'add_payment_method_to_admin_new_order', 15, 2 );
function add_payment_method_to_admin_new_order( $order, $is_admin_email ) {
if ( $is_admin_email ) {
echo '<p><strong>Payment Method:</strong> ' . $order->payment_method_title . '</p>';
}
}