For instance, let's say that I wanted to hide something from the login page, but have it appear everywhere else.
Naturally, this is a good solution for a PHP conditional.
<?php
if qa_login {
echo '';
} else {
echo 'abc';
}
?>
Of course, something like qa_login doesn't exist. Looking at http://www.question2answer.org/functions.php it seems there might be a function that can help me, but if there is it's going over my head.
I realize that we have helpful body classes .qa-template-login to assist with styling, but this is concerning content.
Thank you.