• What can I do to show inline comments (below the topic) in wordpress? I am messing around with comment code, but I can’t get any result.
    Look to http://www.noctambul.net to see an example of what I say.
    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter mans

    (@mans)

    I’ve got all the code modified, the only thing I need now is how to get the post ID. Is there any function o get the post ID?

    <pre>
    <?php comment_ID() ?>
    </pre>
    But this is already in the comment template, wp-comments.php.
    Inline comment functionality is also supported by default, so you shouldn’t need to modify anything to get it to work. If you’re using a modified index file, i.e. one that previously used popups, then you have to uncomment the popup script in the head section.

    Oops, you want the post ID, not the comment ID, right?
    This is it:
    <pre>
    <?php the_ID(); ?>
    </pre>

    Isn’t that layout from CSSZenGarden? 😉

    Release One is his inspiration, I believe.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Question: Inline comments’ is closed to new replies.