WP_Styles::__construct
Constructor.
Method of the class: WP_Styles{}
Hooks from the method
Returns
null. Nothing (null).
Usage
global $wp_styles; $wp_styles->__construct();
Changelog
| Since 2.6.0 | Introduced. |
WP_Styles::__construct() WP Styles:: construct code WP 7.0
public function __construct() {
/**
* Fires when the WP_Styles instance is initialized.
*
* @since 2.6.0
*
* @param WP_Styles $wp_styles WP_Styles instance (passed by reference).
*/
do_action_ref_array( 'wp_default_styles', array( &$this ) );
}