Skip to content

Instantly share code, notes, and snippets.

@dryan1144
Created November 9, 2015 00:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dryan1144/b3171f551c446f31beb1 to your computer and use it in GitHub Desktop.
Save dryan1144/b3171f551c446f31beb1 to your computer and use it in GitHub Desktop.
<?php
if (is_product()) {
echo '<h1>Register</h1>';
} elseif (is_cart()) {
echo '<h1>Review Order</h1>';
} elseif (is_wc_endpoint_url('order-received')) {
echo '<h1>Confirmation</h1>';
} elseif (is_checkout()) {
echo '<h1>Checkout</h1>';
} else {
the_title('<h1>','</h1>');
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment