• Hi at all, I have a problem, In my home page a I use a slider for load 4 page, all is perfect but now I want to add the comments template, bu If I add <?php comments_template(); ?> nothing display.
    Can you help me?this is the code.

    [code moderated as per forum rules - please use the pastebin]

Viewing 4 replies - 1 through 4 (of 4 total)
  • try:

    <?php global $withcomments; $withcomments = true;
    comments_template(); ?>
    Thread Starter kikko088

    (@kikko088)

    it work!thank you 🙂

    Thread Starter kikko088

    (@kikko088)

    another question, now I see comment+form comment but I don’t see the navigation link…there is the code but no work

    <div class="navigation">
    <div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'twentyten' ) ); ?></div>
    <div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
    </div><!-- .navigation -->

    why?
    kikko088

    comment pagination seems only allowed on singular templates (probably for good reasons):

    from the core code of wp (/wp-includes/link-template.php):

    function get_previous_comments_link( $label = '' ) {
    1821      if ( !is_singular() || !get_option('page_comments') )
    1822          return;

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘add comment – home page’ is closed to new replies.