I’d like to make an if-else condition in PHP using the first bracket only. Here’s the code I’m using currently:
if ( is_single() ) echo ' singlular';
I want to make an else statement within this code. I want to add else echo ' archive'
conditional. How can I do that?