Make WordPress Core


Ignore:
Timestamp:
03/14/2013 04:36:14 PM (12 years ago)
Author:
lancewillett
Message:

Twenty Thirteen: remove custom comment callback in favor of core comment_form() defaults. Props obenland, closes #22005. See #20088.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentythirteen/comments.php

    r23690 r23696  
    3131
    3232        <ol class="comment-list">
    33             <?php wp_list_comments( array( 'callback' => 'twentythirteen_comment', 'style' => 'ol' ) ); ?>
     33            <?php
     34                wp_list_comments( array(
     35                    'style'       => 'ol',
     36                    'format'      => 'html5',
     37                    'short_ping'  => true,
     38                    'avatar_size' => 74,
     39                ) );
     40            ?>
    3441        </ol><!-- .comment-list -->
    3542
Note: See TracChangeset for help on using the changeset viewer.