Forums

[resolved] Comments - First Page (8 posts)

  1. JoeLongstreet
    Member
    Posted 3 years ago #

    I'm trying to display my comments on the first page of my blog. There should be one post, and all the comments. I can't figure out why this isn't working. index.php and single.php are exactly the same but single is displaying the post and index isn't. What am I overlooking here?

    Thanks for any help,

    Joe

  2. krembo99
    Member
    Posted 3 years ago #

    Are they the same on front end or the actual code ?

  3. JoeLongstreet
    Member
    Posted 3 years ago #

    actual code

  4. krembo99
    Member
    Posted 3 years ago #

    did you checked the general Settings -> Reading to see if index displays posts ?

  5. nitetalker
    Member
    Posted 3 years ago #

    Joe, this is happening because of these lines in wp-includes\comment-template.php:


    if ( ! (is_single() || is_page() || $withcomments) )
    return;

    They're in the function comments_template. The source code comments for that function give the explanation.

    To get the effect you want, replace the first of those two lines to


    if ( ! (is_single() || is_page() || $withcomments) || is_home() )

    Of course, it's desirable to avoid hacks. If I can find a plug-in toaccomplish this , I'll try to remember to post a link to it here.

  6. nitetalker
    Member
    Posted 3 years ago #

    Joe, this is happening because of these lines in wp-includes\comment-template.php:

    if ( ! (is_single() || is_page() || $withcomments) )
       return;

    They're in the function comments_template. The source code comments for that function give the explanation.

    To get the effect you want, replace the first of those two lines to

    if ( ! (is_single() || is_page() || $withcomments) || is_home() )

    Of course, it's desirable to avoid hacks. If I can find a plug-in toaccomplish this , I'll try to remember to post a link to it here.

  7. JoeLongstreet
    Member
    Posted 3 years ago #

    NICE! Exactly what I was hoping to accomplish. Thanks for your help,

    Joe

  8. tmrover@hotmail.com
    Member
    Posted 3 years ago #


Topic Closed

This topic has been closed to new replies.

About this Topic