Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Last active May 23, 2020 18:52
Show Gist options
  • Save barrykooij/e370ed399b8808ba7aa9 to your computer and use it in GitHub Desktop.
Save barrykooij/e370ed399b8808ba7aa9 to your computer and use it in GitHub Desktop.
<?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 );
@elron
Copy link

elron commented May 23, 2020

Thank you this works perfectly!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment