Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_print_styles

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
44           $handles = false;
45      }
46
47      if ( ! $handles ) {
48           /**
49            * Fires before styles in the $handles queue are printed.
50            *
51            * @since 2.6.0
52            */
53           do_action( 'wp_print_styles' );
54      }
55
56      _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
57
58      global $wp_styles;
59      if ( ! ( $wp_styles instanceof WP_Styles ) ) {
60           if ( ! $handles ) {
61                return array(); // No need to instantiate if nothing is there.
62           }