Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: style_loader_src

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
138      }
139
140      function _css_href( $src, $ver, $handle ) {
141           if ( !is_bool($src) && !preg_match('|^(https?:)?//|', $src) && ! ( $this->content_url && 0 === strpos($src, $this->content_url) ) ) {
142                $src = $this->base_url . $src;
143           }
144
145           if ( !empty($ver) )
146                $src = add_query_arg('ver', $ver, $src);
147           $src = apply_filters( 'style_loader_src', $src, $handle );
148           return esc_url( $src );
149      }
150
151      function in_default_dir($src) {
152           if ( ! $this->default_dirs )
153                return true;
154
155           foreach ( (array) $this->default_dirs as $test ) {
156                if ( 0 === strpos($src, $test) )