Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
2.9k views
in Q2A Core by
There are three methods and no idea to how to do it. Please help.
Q2A version: latest

1 Answer

+1 vote
by
selected by
 
Best answer

Two Ways:

1. Put the BingSiteAuth.xml file in your Q2A site root. 

2. Add following code to your theme's qa-theme.php:

    function head_custom() {
        qa_html_theme_base::head_custom();
        $this->output('<meta name="msvalidate.01" content="YOUR_BING_VERIFY_ID_HERE" />');
    }
by
Thank you very much. I used 1st method. Success.
...