[theme-reviewers] Numbering comments with wp_list_comments()
Syahir Hakim
khairulsyahir at gmail.com
Mon Jan 3 12:53:07 UTC 2011
Hi everyone,
Just an update on this issue. The Greg's Threaded Comment Numbering
Plugin seems to the do the job well for this purpose.
--
Regards,
Syahir Hakim
Contact:
http://www.khairul-syahir.com
+6014 753 1883
On 2/1/2011 11:26 AM, Daniel Tara wrote:
>
> Chip, I think he means keeping a counting the outputted comments
> inside a variable.
>
> Just an idea, untested:
>
> Initialize a variable right before the wp_list_comments() function,
> like this:
>
> $i = 0;
>
> wp_list_comments();
>
> and then you declare $i as global in graphene_comment() and increase
> it on every iteration:
>
> function graphene_comment() {
>
> global $i;
>
> $i++
>
> // comments callback
>
> }
>
> Daniel
>
> *From:*theme-reviewers-bounces at lists.wordpress.org
> [mailto:theme-reviewers-bounces at lists.wordpress.org] *On Behalf Of
> *Chip Bennett
> *Sent:* Sunday, January 02, 2011 5:20 AM
> *To:* theme-reviewers at lists.wordpress.org
> *Subject:* Re: [theme-reviewers] Numbering comments with
> wp_list_comments()
>
> Have you tried outputting wp_list_comments() inside of OL tags, and
> styling the list marker?
>
> On Sat, Jan 1, 2011 at 9:08 PM, Syahir Hakim <khairulsyahir at gmail.com
> <mailto:khairulsyahir at gmail.com>> wrote:
>
> Hi everyone,
>
> One of my theme users is trying to figure out how to number the
> comments shown in the website. In the old days (prior to
> wp_list_comments() being a requirement) this can be easily done using
> a counter variable ( $i = 0, $i++ that sort of thing), but can the
> same effect be achieved when using wp_list_comments()?
>
> I know we can just style the list output, but that's not very flexible
> in terms of styling. You can't really move the ordered list numbers
> around as you wish, for example.
>
> FYI, my theme (Graphene) is using wp_list_comments() with a callback
> function graphene_comment() to format the comments output.
>
> Thanks guys!
>
> --
> Regards,
> Syahir Hakim
>
> Contact:
> http://www.khairul-syahir.com
> +6014 753 1883
>
> _______________________________________________
> theme-reviewers mailing list
> theme-reviewers at lists.wordpress.org
> <mailto:theme-reviewers at lists.wordpress.org>
> http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>
>
> _______________________________________________
> theme-reviewers mailing list
> theme-reviewers at lists.wordpress.org
> http://lists.wordpress.org/mailman/listinfo/theme-reviewers
More information about the theme-reviewers
mailing list