Changeset 9243 for trunk/wp-includes/functions.wp-styles.php
- Timestamp:
- 10/18/2008 08:46:30 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.wp-styles.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.wp-styles.php
r9002 r9243 8 8 9 9 /** 10 * {@internal Missing Short Description}}10 * Display styles that are in the queue or part of $handles. 11 11 * 12 12 * @since r79 13 * @uses do_action() Calls 'wp_print_styles' hook. 14 * @global object $wp_styles The WP_Styles object for printing styles. 13 15 * 14 * @param mixed $handles See {@link WP_Styles::do_items()} for information.15 * @return mixed See {@link WP_Styles::do_items()} for information.16 * @param array $handles (optional) Styles to be printed. (void) prints queue, (string) prints that style, (array of strings) prints those styles. 17 * @return bool True on success, false on failure. 16 18 */ 17 19 function wp_print_styles( $handles = false ) { … … 31 33 } 32 34 35 /** 36 * Register CSS style file. 37 * 38 * @since r79 39 * @see WP_Styles::add() For parameter and additional information. 40 */ 33 41 function wp_register_style( $handle, $src, $deps = array(), $ver = false, $media = false ) { 34 42 global $wp_styles; … … 39 47 } 40 48 49 /** 50 * Remove a registered CSS file. 51 * 52 * @since r79 53 * @see WP_Styles::remove() For parameter and additional information. 54 */ 41 55 function wp_deregister_style( $handle ) { 42 56 global $wp_styles; … … 47 61 } 48 62 63 /** 64 * Enqueue a CSS style file. 65 * 66 * @since r79 67 * @see WP_Styles::add(), WP_Styles::enqueue() 68 */ 49 69 function wp_enqueue_style( $handle, $src = false, $deps = array(), $ver = false, $media = false ) { 50 70 global $wp_styles;
Note: See TracChangeset
for help on using the changeset viewer.