endurain
1/22/2019 - 4:55 PM

Contitional PHP statement to checks to see if a page template is in use, and if it is, display a different phone number.

Contitional PHP statement to checks to see if a page template is in use, and if it is, display a different phone number.

<?php
  if ( !is_page_template( 'nest-products.php' ) ) {
      echo $phone;
  } else {
      echo "(973)657-6055";
  } 
?>