/**
* Conditionally output the HubSpot tracking script on all pages
* except the specific unindexed form pages (Sarah/General, Harrods, New Project).
*/
function exclude_hubspot_on_form_pages() {
$excluded_page_ids = array( 17902, 17952, 18035 );
if ( ! is_page( $excluded_page_ids ) ) {
echo '' . "\n";
}
}
add_action( 'wp_head', 'exclude_hubspot_on_form_pages' );
Skip to content