Display DISQUS on homepage

I have installed disqus and I want it to show up on my homepage. It replaced the old wordpress comments system on pages and posts but I also want it to appear on index.php

my index.php file now - > http://i.imgur.com/TxaroMC.png

I added ?php comments_template(); ? but nothing happend. What should I do ? I want to put it at the bottom of my website

Thanks

Topic disqus homepage templates comments Wordpress

Category Web


Hook it in from your child themes functions file or add the template tag to a front-page.php file

Untested

add_action('loop_end','disqus_front_page_after_loop');

function disqus_front_page_after_loop() {

if (is_front_page() && function_exists( 'comments_template' ) ) {

comments_template();

    }
}

Change the loop_end hook to another WordPress or theme specific hook.

If using the template tag, you might want to try adding it before the footer rather than before the end of the loop if it works outside the loop.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.