My user wants the title of the page to be "Frequently Asked Questions" instead of "FAQ's", so I added the following code (with some stuff to make sure that I'm not insane...
<?php $changetitle = the_title("","",FALSE);
echo "|$changetitle|";
if( $changetitle == "FAQ's" ) {
echo "Frequently Asked Questions"; }
else {
echo $changetitle; }
?>
Looks right to me but I get:
|FAQ’s|FAQ’s
as the title on the page. What am I doing wrong? I've been looking at this for four hours!