Changeset 37493 for trunk/src/wp-includes/theme.php
- Timestamp:
- 05/22/2016 06:17:38 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r37487 r37493 152 152 function get_stylesheet() { 153 153 /** 154 * Filter the name of current stylesheet.154 * Filters the name of current stylesheet. 155 155 * 156 156 * @since 1.5.0 … … 174 174 175 175 /** 176 * Filter the stylesheet directory path for current theme.176 * Filters the stylesheet directory path for current theme. 177 177 * 178 178 * @since 1.5.0 … … 198 198 199 199 /** 200 * Filter the stylesheet directory URI.200 * Filters the stylesheet directory URI. 201 201 * 202 202 * @since 1.5.0 … … 223 223 $stylesheet_uri = $stylesheet_dir_uri . '/style.css'; 224 224 /** 225 * Filter the URI of the current theme stylesheet.225 * Filters the URI of the current theme stylesheet. 226 226 * 227 227 * @since 1.5.0 … … 265 265 $stylesheet_uri = ''; 266 266 /** 267 * Filter the localized stylesheet URI.267 * Filters the localized stylesheet URI. 268 268 * 269 269 * @since 2.1.0 … … 284 284 function get_template() { 285 285 /** 286 * Filter the name of the current theme.286 * Filters the name of the current theme. 287 287 * 288 288 * @since 1.5.0 … … 306 306 307 307 /** 308 * Filter the current theme directory path.308 * Filters the current theme directory path. 309 309 * 310 310 * @since 1.5.0 … … 330 330 331 331 /** 332 * Filter the current theme directory URI.332 * Filters the current theme directory URI. 333 333 * 334 334 * @since 1.5.0 … … 435 435 436 436 /** 437 * Filter whether to get the cache of the registered theme directories.437 * Filters whether to get the cache of the registered theme directories. 438 438 * 439 439 * @since 3.4.0 … … 552 552 553 553 /** 554 * Filter the absolute path to the themes directory.554 * Filters the absolute path to the themes directory. 555 555 * 556 556 * @since 1.5.0 … … 601 601 602 602 /** 603 * Filter the URI for themes directory.603 * Filters the URI for themes directory. 604 604 * 605 605 * @since 1.5.0 … … 771 771 function validate_current_theme() { 772 772 /** 773 * Filter whether to validate the current theme.773 * Filters whether to validate the current theme. 774 774 * 775 775 * @since 2.7.0 … … 857 857 if ( isset( $mods[$name] ) ) { 858 858 /** 859 * Filter the theme modification, or 'theme_mod', value.859 * Filters the theme modification, or 'theme_mod', value. 860 860 * 861 861 * The dynamic portion of the hook name, `$name`, refers to … … 891 891 892 892 /** 893 * Filter the theme mod value on save.893 * Filters the theme mod value on save. 894 894 * 895 895 * The dynamic portion of the hook name, `$name`, refers to the key name of … … 1071 1071 1072 1072 /** 1073 * Filter the markup of header images.1073 * Filters the markup of header images. 1074 1074 * 1075 1075 * @since 4.4.0 … … 1504 1504 1505 1505 /** 1506 * Filter the array of stylesheets applied to the editor.1506 * Filters the array of stylesheets applied to the editor. 1507 1507 * 1508 1508 * @since 4.3.0 … … 1947 1947 1948 1948 /** 1949 * Filter whether the current theme supports a specific feature.1949 * Filters whether the current theme supports a specific feature. 1950 1950 * 1951 1951 * The dynamic portion of the hook name, `$feature`, refers to the specific theme
Note: See TracChangeset
for help on using the changeset viewer.