public function __construct() { $widget_ops = array
( 'classname' => 'widget_recent_comments',
'description' =>
__( 'Your site’s most recent comments.'
),
'customize_selective_refresh' => true,
'show_instance_in_rest' => true,
);
parent::
__construct( 'recent-comments',
__( 'Recent Comments'
),
$widget_ops );
$this->alt_option_name = 'widget_recent_comments';
if ( is_active_widget( false, false,
$this->id_base
) ||
is_customize_preview() ) { add_action( 'wp_head', array
( $this, 'recent_comments_style'
) );
} } /**
* Outputs the default styles for the Recent Comments widget.
*
* @since 2.8.0
*/
public function recent_comments_style() { /**
* Filters the Recent Comments default widget styles.
*
* @since 3.1.0
*
* @param bool $active Whether the widget is active. Default true.
* @param string $id_base The widget ID.
*/