Forums

need help with If / Else Statement (2 posts)

  1. rawwebdesign
    Member
    Posted 4 years ago #

    Hi,

    Just a quick question about php. I'm trying to form an if / else statement to handle meta tags... I want it to be like...

    if this is the homepage, display these meta tags...

    else this is not the homepage, display these dynamic meta tags...

    I've already got everything else handled, just need to override the dynamic meta tags for the homepage...

    Thanks, Brad
    [sig moderated]

  2. Kafkaesqui
    Moderator
    Posted 4 years ago #

    <?php if( is_home() ) : ?>
    Home sweet home!
    <?php else : ?>
    You can't go home again!
    <?php endif; ?>

    Ref: http://codex.wordpress.org/Conditional_tags

Topic Closed

This topic has been closed to new replies.

About this Topic