WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 84 | * Filter the HTML link tag of an enqueued style. |
| 85 | * |
| 86 | * @since 2.6.0 |
| 87 | * @since 4.3.0 Introduced the `$href` parameter. |
| 88 | * |
| 89 | * @param string $html The link tag for the enqueued style. |
| 90 | * @param string $handle The style's registered handle. |
| 91 | * @param string $href The stylesheet's source URL. |
| 92 | */ |
| 93 | $tag = apply_filters( 'style_loader_tag', "<link rel='$rel' id='$handle-css' $title href='$href' type='text/css' media='$media' />\n", $handle, $href ); |
| 94 | if ( 'rtl' === $this->text_direction && isset($obj->extra['rtl']) && $obj->extra['rtl'] ) { |
| 95 | if ( is_bool( $obj->extra['rtl'] ) || 'replace' === $obj->extra['rtl'] ) { |
| 96 | $suffix = isset( $obj->extra['suffix'] ) ? $obj->extra['suffix'] : ''; |
| 97 | $rtl_href = str_replace( "{$suffix}.css", "-rtl{$suffix}.css", $this->_css_href( $obj->src , $ver, "$handle-rtl" )); |
| 98 | } else { |
| 99 | $rtl_href = $this->_css_href( $obj->extra['rtl'], $ver, "$handle-rtl" ); |
| 100 | } |
| 101 | |
| 102 | /** This filter is documented in wp-includes/class.wp-styles.php */ |
| 103 | $rtl_tag = apply_filters( 'style_loader_tag', "<link rel='$rel' id='$handle-rtl-css' $title href='$rtl_href' type='text/css' media='$media' />\n", $handle, $rtl_href ); |
| 104 | |
| 105 | if ( $obj->extra['rtl'] === 'replace' ) { |
| 106 | $tag = $rtl_tag; |
| 107 | } else { |
| 108 | $tag .= $rtl_tag; |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | $conditional_pre = $conditional_post = ''; |