Changeset 55072 for trunk/src/wp-includes/functions.wp-styles.php
- Timestamp:
- 01/15/2023 02:55:19 PM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.wp-styles.php
r55071 r55072 10 10 11 11 /** 12 * Initialize $wp_styles if it has not been set.12 * Initializes $wp_styles if it has not been set. 13 13 * 14 14 * @global WP_Styles $wp_styles … … 29 29 30 30 /** 31 * Display styles that are in the $handles queue.31 * Displays styles that are in the $handles queue. 32 32 * 33 33 * Passing an empty array to $handles prints the queue, … … 70 70 71 71 /** 72 * Add extra CSS styles to a registered stylesheet.72 * Adds extra CSS styles to a registered stylesheet. 73 73 * 74 74 * Styles will only be added if the stylesheet is already in the queue. … … 106 106 107 107 /** 108 * Register a CSS stylesheet.108 * Registers a CSS stylesheet. 109 109 * 110 110 * @see WP_Dependencies::add() … … 134 134 135 135 /** 136 * Remove a registered stylesheet.136 * Removes a registered stylesheet. 137 137 * 138 138 * @see WP_Dependencies::remove() … … 149 149 150 150 /** 151 * Enqueue a CSS stylesheet.151 * Enqueues a CSS stylesheet. 152 152 * 153 153 * Registers the style if source provided (does NOT overwrite) and enqueues. … … 185 185 186 186 /** 187 * Remove a previously enqueued CSS stylesheet.187 * Removes a previously enqueued CSS stylesheet. 188 188 * 189 189 * @see WP_Dependencies::dequeue() … … 200 200 201 201 /** 202 * Check whether a CSS stylesheet has been added to the queue.202 * Checks whether a CSS stylesheet has been added to the queue. 203 203 * 204 204 * @since 2.8.0 … … 216 216 217 217 /** 218 * Add metadata to a CSS stylesheet.218 * Adds metadata to a CSS stylesheet. 219 219 * 220 220 * Works only if the stylesheet has already been registered.
Note: See TracChangeset
for help on using the changeset viewer.