WP_Widget_Recent_Comments::__construct()publicWP 2.8.0

Sets up a new Recent Comments widget instance.

Метод класса: WP_Widget_Recent_Comments{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_Widget_Recent_Comments = new WP_Widget_Recent_Comments();
$WP_Widget_Recent_Comments->__construct();

Список изменений

С версии 2.8.0 Введена.

Код WP_Widget_Recent_Comments::__construct() WP 6.5.2

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' ) );
	}
}