TSK TEMP SNIPPET DUMP DO NOT PUBLISH

/** * TSK — V2 Universal Navigation (Site Wide) * Injects the consistent v2 nav on all pages that don’t have their own embedded nav. * Loads on ALL pages — single source of truth for nav HTML/CSS/JS * * To add a new page to the nav, update: * 1. The desktop section * 2. The mobile section */ if ( is_admin() && ! wp_doing_ajax() ) { return; } if ( defined( ‘DOING_CRON’ ) && DOING_CRON ) { return; } add_action( ‘template_redirect’, function () { // Mark nav as handled — page snippets check this to skip their own nav define( ‘TSK_GLOBAL_NAV_ACTIVE’, true ); /* ── 1. HEAD: CSS… Read More

Continue Reading