How to customize answering questions page?
How can I customize the page where we found when we want to answer a question?
We can set a custom page in: Archives page, Ask page, User page…but there isn’t the option to set a custom page or template of each question already asked.
You can see the screenshot with no header neither paddings.
Example page
Thanks!
Question is closed for new answers.
Rahul Aryan Selected answer as best
Hello,
Single question page uses base page template. You can add condition to base page template. Like this:
<?php if ( is_question() ) : ?> <-- Single question HTML --> <?php else : ?> <-- Base page HTML --> <?php endif; ?>
Rahul Aryan Selected answer as best