web-dev-qa-db-fra.com

ol enfants au lieu d'enfants ul

J'ai créé une nouvelle classe de marcheur qui permet d'afficher une présentation personnalisée lorsque vous utilisez la fonction wp_list_comments();. C'est parfait. La seule chose à faire est que toutes les réponses à un commentaire sont répertoriées dans un <ul> - <ul class="children">. Je voudrais que ceux-ci soient dans un support <ol>. Est-il possible de changer cela en utilisant quelque chose comme start_lvl?

Heres my walker class - <?php wp_list_comments('type=comment&callback=letsfixit_comment'); ?>

function heres_my_comment($comment, $args, $depth) {
        $GLOBALS['comment'] = $comment;
        extract($args, EXTR_SKIP);

?>
        <li>
         <div class="oneComment" id="div-comment-<?php comment_ID() ?>">
        <div class="avatIcon pull-left">
        <?php if ($args['avatar_size'] != 0) echo get_avatar( $comment, $args['avatar_size'] ); ?>
        </div>
        <span class="author"><?php printf(__('<cite class="fn">%s</cite> <span class="says">says:</span>'), get_comment_author_link()) ?></span>
        <span class="date"><?php /* translators: 1: date, 2: time */ printf( __('%1$s at %2$s'), get_comment_date(),  get_comment_time()) ?></a><?php edit_comment_link(__('(Edit)'),'  ','' );?></a></span>
        <?php comment_reply_link(array_merge( $args, array('add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?>

        <?php if ($comment->comment_approved == '0') : ?>
        <em class="comment-awaiting-moderation"><?php _e('Your comment is awaiting moderation.') ?></em>
        <br />
        <?php endif; ?>

        <div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>">

        </div>

        <?php comment_text() ?>

        <div class="reply">

        </div>
        </div>
<?php
        }
1
Oliver Whysall

Ajoutez style=ol à votre appel à wp_list_comments.

Référence:

http://codex.wordpress.org/Function_Reference/wp_list_comments#Parameters

1
Otto