larryjam Posted April 27, 2009 Posted April 27, 2009 I have this set in my index.php file <title><?php echo (strlen($title_tag) > 1) ? $title_tag . ' - ' . TITLE : $title_home_default . ' - ' . TITLE; ?></title> Is it possible to reverse the order in which this displays the title on the pages. How would I do this? Quote
Jonojamesmac Posted April 27, 2009 Posted April 27, 2009 I have this set in my index.php file <title><?php echo (strlen($title_tag) > 1) ? $title_tag . ' - ' . TITLE : $title_home_default . ' - ' . TITLE; ?></title> Is it possible to reverse the order in which this displays the title on the pages. How would I do this? I don't really understand your question... If you mean rearrange the title you have quoted, thats easy. Like.. <title><?php echo (strlen($title_tag) > 1) ? TITLE . ' - ' . $title_tag : TITLE . ' - ' . $title_home_default; ?></title> Quote
larryjam Posted April 27, 2009 Author Posted April 27, 2009 I don't really understand your question... If you mean rearrange the title you have quoted, thats easy. Like.. <title><?php echo (strlen($title_tag) > 1) ? TITLE . ' - ' . $title_tag : TITLE . ' - ' . $title_home_default; ?></title> Thank You Just what I was looking for. Thanks for taking the time to help. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.