Changeset 31196 for trunk/src/wp-includes/functions.wp-styles.php
- Timestamp:
- 01/16/2015 02:41:07 AM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/functions.wp-styles.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.wp-styles.php
r31194 r31196 53 53 } 54 54 55 wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );55 _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ ); 56 56 57 57 global $wp_styles; … … 82 82 */ 83 83 function wp_add_inline_style( $handle, $data ) { 84 wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );84 _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ ); 85 85 86 86 if ( false !== stripos( $data, '</style>' ) ) { … … 110 110 */ 111 111 function wp_register_style( $handle, $src, $deps = array(), $ver = false, $media = 'all' ) { 112 wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );112 _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ ); 113 113 114 114 wp_styles()->add( $handle, $src, $deps, $ver, $media ); … … 125 125 */ 126 126 function wp_deregister_style( $handle ) { 127 wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );127 _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ ); 128 128 129 129 wp_styles()->remove( $handle ); … … 152 152 function wp_enqueue_style( $handle, $src = false, $deps = array(), $ver = false, $media = 'all' ) { 153 153 global $wp_styles; 154 wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );154 _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ ); 155 155 156 156 $wp_styles = wp_styles(); … … 173 173 */ 174 174 function wp_dequeue_style( $handle ) { 175 wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );175 _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ ); 176 176 177 177 wp_styles()->dequeue( $handle ); … … 191 191 */ 192 192 function wp_style_is( $handle, $list = 'enqueued' ) { 193 wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );193 _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ ); 194 194 195 195 return (bool) wp_styles()->query( $handle, $list );
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)