I have 2 domains sharing the same Wordpress theme. I don't want to manage 2 separate themes, but there are a few small differences in the sites. I want to do something similar to the:
<?php if ( is_page( 'Contact' )) { ?>
<!-- Contact content -->
<?php } else { ?>
<!-- Other content -->
<?php } ?>
But instead of looking for a page, it is looking for a different full URL: Such as http://example.com versus http://example.net.
if (is .net site) && (is_page(...))
? – Marc B