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
95           return $r;
96      }
97
98      function _css_href( $src, $ver, $handle ) {
99           if ( !preg_match('|^https?://|', $src) && ! ( $this->content_url && 0 === strpos($src, $this->content_url) ) ) {
100                $src = $this->base_url . $src;
101           }
102
103           $src = add_query_arg('ver', $ver, $src);
104           $src = apply_filters( 'style_loader_src', $src, $handle );
105           return esc_url( $src );
106      }
107
108      function in_default_dir($src) {
109           if ( ! $this->default_dirs )
110                return true;
111
112           foreach ( (array) $this->default_dirs as $test ) {
113                if ( 0 === strpos($src, $test) )