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
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
if(is_front() && is_topic())
Hope I'm not saying something wrong =)
nope.. it will be
if(is_front() || is_topic())
Thx guys
You must log in to post.