The hook occurs in the following file:
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | * @since 2.6.0
*/
public function __construct() {
/**
* Fires when the WP_Styles instance is initialized.
*
* @since 2.6.0
*
* @param WP_Styles $this WP_Styles instance (passed by reference).
*/
do_action_ref_array( 'wp_default_styles', array( &$this ) );
}
/**
* Processes a style dependency.
*
* @since 2.6.0
*
* @see WP_Dependencies::do_item()
*
|