>re simultaneous page requests
Two different users access the site. page_one.php sets the $my_title value to “PageOne”. Then before the header.php code is executed for page one, page_two.php sets the value to “PageTwo”. Since it is a global variable, and assuming that there could be multiple threads generating WordPress content, isn’t it possible that both pages would be displayed with the title “PageTwo”?
>re: wp_title
I’ll look into that again. Since header.php makes that call, every approach that I’ve come up with requires passing of some kind of data/flag.
Thanks again.