How do i create "A" to show on homepage only, and all other pages to be showing "B" ? Right now i got this to show up A on home page, but I have no idea to make B to show up on all others. <?php /* If this is the frontpage */ if ( is_home() ) { ?> Show "A" <?php } ?> Thanks for the help!
Troy, that only works if is_home() is setup as a valid function. And you don't have curly braces <? if($_SERVER['PHP_SELF']='index.php') { echo "A"; } else { echo "B"; } ?> (Edit Replace index.php with your homepage file, if it's different.
$_SERVER['PHP_SELF'] has some issues depending on how you are passing your vars and the document directory structure - I'd suggest using: basename($_SERVER['SCRIPT_FILENAME']) instead.