Last active
May 23, 2020 18:52
-
-
Save barrykooij/e370ed399b8808ba7aa9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function bk_title_order_received( $title, $id ) { | |
if ( is_order_received_page() && get_the_ID() === $id ) { | |
$title = "Thank you for your order!"; | |
} | |
return $title; | |
} | |
add_filter( 'the_title', 'bk_title_order_received', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you this works perfectly!