mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
9 lines
214 B
Text
9 lines
214 B
Text
add_action( 'woocommerce_thankyou', 'wc_custom_thank_you_page', 5 );
|
|
|
|
function wc_custom_thank_you_page() {
|
|
|
|
$page_id = 540;
|
|
$page_object = get_page( $page_id );
|
|
echo $page_object->post_content;
|
|
|
|
}
|