Make WordPress Core

Ticket #12668: 12668-widgets.patch

File 12668-widgets.patch, 558 bytes (added by mordauk, 10 years ago)
  • src/wp-includes/default-widgets.php

     
    856856                $comments = get_comments( apply_filters( 'widget_comments_args', array(
    857857                        'number'      => $number,
    858858                        'status'      => 'approve',
    859                         'post_status' => 'publish'
     859                        'post_status' => 'publish',
     860                        'type'        => array( 'pingback', 'trackback', 'comment' )
    860861                ) ) );
    861862
    862863                $output .= $args['before_widget'];