WP_Widget_Meta::__construct() – Sets up a new Meta widget instance.

You appear to be a bot. Output may be restricted

Description

Sets up a new Meta widget instance.

Usage

WP_Widget_Meta::__construct();

Parameters

Returns

void

Source

File name: wordpress/wp-includes/widgets/class-wp-widget-meta.php
Lines:

1 to 9 of 9
  public function __construct() {
    $widget_ops = array(
      'classname'                   => 'widget_meta',
      'description'                 => __( 'Login, RSS, & WordPress.org links.' ),
      'customize_selective_refresh' => true,
      'show_instance_in_rest'       => true,
    );
    parent::__construct( 'meta', __( 'Meta' ), $widget_ops );
  }
 

 View on GitHub View on Trac