Add docblock

This commit is contained in:
Claudio Sanches 2020-06-25 21:35:32 -03:00 committed by GitHub
parent 414d4276ff
commit a804d0f408
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions

View File

@ -100,9 +100,15 @@ if ( $show_downloads ) {
<?php do_action( 'woocommerce_order_details_after_order_table', $order ); ?>
</section>
<?php do_action( 'woocommerce_after_order_details', $order ); ?>
<?php
/**
* Action hook fired after the order details.
*
* @since 4.4.0
* @param WC_Order $order Order data.
*/
do_action( 'woocommerce_after_order_details', $order );
if ( $show_customer_details ) {
wc_get_template( 'order/order-details-customer.php', array( 'order' => $order ) );
}