I have a header that basically says something like this:
" Forum
A great place for support. "
And I need it to display on certain pages of my site, the ones related to the forum.
However on other pages I might want a header like:
" Donate
Help keep us online. "
The adresses on the forum part of the site would be similar to these.
http://localhost/index.php?p=/discussions
http://localhost/index.php?p=/activity
http://localhost/index.php?p=/discussion/6/oh-dear#Item_1
And the donate one might be like this:
http://localhost/index.php?p=/plugin/page/donate
So I need some way to have a script that goes
if url has (discussions, activity, discussion)
then use this header
"<b>Forum<b> <br> a great place for support
if else url has (donate)
then use this header
"<b>Donate<b> <br> help keep us online
else
use this header
"<b>Website<b> <br> this is our website
