Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Meta_Box_Order_Transactions::resend_receipt( int $post_id )
Resend a receipt for a transaction
Parameters Parameters
- $post_id
-
(int) (Required) WP Post ID of the current order
Return Return
(void)
Source Source
File: includes/admin/post-types/meta-boxes/class.llms.meta.box.order.transactions.php
private function resend_receipt( $post_id ) { $txn_id = llms_filter_input( INPUT_POST, 'llms_resend_receipt', FILTER_SANITIZE_NUMBER_INT ); if ( ! $txn_id ) { return; } do_action( 'lifterlms_resend_transaction_receipt', llms_get_post( $txn_id ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |