Overriding the breadcrumb, title and menu text for a page

By default, WebTemplate will set the breadcrumb and menu text for a page from the values set in Site Builder. You may override the defaults by setting these global variables:

// set the page title - the value between the <title> tags
$GLOBALS["WTPAGETITLE"] = "Custom Page Title";

// set the breadcrumb
$GLOBALS["WTBREADCRUMB"] = '<a href="home">Home</a> &gt; <a href="blog">Blog</a>';

// set the menu text
$GLOBALS["WTMENUTEXT"] = "Custom Menu Text";