WP_Customize_New_Menu_Section::__construct() – Constructor.

You appear to be a bot. Output may be restricted

Description

Constructor.

Any supplied $args override class property defaults.

Usage

WP_Customize_New_Menu_Section::__construct( $manager, $id, $args );

Parameters

$manager
( WP_Customize_Manager ) required – Customizer bootstrap instance.
$id
( string ) required – A specific ID of the section.
$args
( array ) optional – Section arguments.

Returns

void

Source

File name: wordpress/wp-includes/customize/class-wp-customize-new-menu-section.php
Lines:

1 to 4 of 4
  public function __construct( WP_Customize_Manager $manager, $id, array $args = array() ) {
    _deprecated_function( __METHOD__, '4.9.0' );
    parent::__construct( $manager, $id, $args );
  }
 

 View on GitHub View on Trac