• I have a WP site set up but am very new to blogs and blog posting. I’ve put a post on the blog page and when I view it there is no way to add a comment without first clicking on the title of the post to go to the separate page for that post. Do all users know this? Is there a way to make this more clear? My complete post appears on the blog page so there is no reason to click the title (except to post a comment).

    I’ve seen blogs with partial posts visible on the blog page, the post ending with something like “click here for more” which prompts the user to go to the separate page for that post (and be able to post a comment). How to I get that to partial post / “click here for more” to happen?

Viewing 5 replies - 1 through 5 (of 5 total)
  • open up your index.php in the editor:

    locate where the code says <? php the_content(); ?>

    replace it with <?php the_excerpt(); ?>

    Alternatively:

    You can find <? php the_content(); ?>

    and then add <?php comments_template(); ?> to the end. Should allow users to comment immediately after.

    Thread Starter mwrmwr

    (@mwrmwr)

    Hmm, I don’t find that code (I’m using a template). My index.php loads a file which loads other files, but so far I can’t find anything like <? php the_content(); ?> . It’s too late now to pursue this so I’ll take another look when I have time.

    Can’t you just put the “More” link in after a few lines?

    That will put the “Read more >>” link at that point.

    Thread Starter mwrmwr

    (@mwrmwr)

    >Can’t you just put the “More” link in after a few lines?
    That will put the “Read more >>” link at that point.<

    The entire post is on the blog page, so “More” really wouldn’t show more. But even if that weren’t true, wouldn’t that “More” link also appear in the post on the separate post page? Or possibly I don’t understand what you mean; as I said, I’m a newbie.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Newbie question about users posting comments to blog posts’ is closed to new replies.