Changeset 48137
- Timestamp:
- 06/23/2020 10:41:52 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r48121 r48137 155 155 156 156 /** 157 * Retrieve name of the current stylesheet.157 * Retrieves name of the current stylesheet. 158 158 * 159 159 * The theme name that the administrator has currently set the front end theme … … 179 179 180 180 /** 181 * Retrieve stylesheet directory path for current theme.181 * Retrieves stylesheet directory path for current theme. 182 182 * 183 183 * @since 1.5.0 184 184 * 185 * @return string Path to current theme directory.185 * @return string Path to current theme stylesheet directory. 186 186 */ 187 187 function get_stylesheet_directory() { … … 203 203 204 204 /** 205 * Retrieve stylesheet directory URI.205 * Retrieves stylesheet directory URI for current theme. 206 206 * 207 207 * @since 1.5.0 … … 227 227 228 228 /** 229 * Retrieves the URI of current theme stylesheet.229 * Retrieves stylesheet URI for current theme. 230 230 * 231 231 * The stylesheet file name is 'style.css' which is appended to the stylesheet directory URI path. … … 295 295 296 296 /** 297 * Retrieve name of the current theme.297 * Retrieves name of the current theme. 298 298 * 299 299 * @since 1.5.0 … … 313 313 314 314 /** 315 * Retrieve current theme directory.315 * Retrieves template directory path for current theme. 316 316 * 317 317 * @since 1.5.0 318 318 * 319 * @return string Template directory path.319 * @return string Path to current theme template directory. 320 320 */ 321 321 function get_template_directory() { … … 329 329 * @since 1.5.0 330 330 * 331 * @param string $template_dir The URIof the current theme directory.331 * @param string $template_dir The path of the current theme directory. 332 332 * @param string $template Directory name of the current theme. 333 333 * @param string $theme_root Absolute path to the themes directory. … … 337 337 338 338 /** 339 * Retrieve theme directory URI.339 * Retrieves template directory URI for current theme. 340 340 * 341 341 * @since 1.5.0 342 342 * 343 * @return string Template directory URI.343 * @return string URI to current theme template directory. 344 344 */ 345 345 function get_template_directory_uri() {
Note: See TracChangeset
for help on using the changeset viewer.