mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
5 lines
173 B
Text
5 lines
173 B
Text
add_action( 'woocommerce_review_order_before_payment', 'wc_checkout_payment_options_title' );
|
|
|
|
function wc_checkout_payment_options_title() {
|
|
echo '<h3>Pay Now</h3>';
|
|
}
|