Forums

Join
bbPress Support ForumsTroubleshootingIf code-question

Info

Tags

If code-question

  1. Hi

    I am using this code :

    if (is_front()){ echo 'bla bla' } etc

    But I also want to add is_topic() in this if. How do I do that?

    This has to be a noob question :D

  2. if(is_front() && is_topic())

    Hope I'm not saying something wrong =)

  3. nope.. it will be

    if(is_front() || is_topic())

  4. Thx guys

  5. You must log in to post.