Definition:
function wp_deregister_style( $handle ) {}
Remove a registered CSS file.
Parameters
- string $handle: Name of the stylesheet.
Source code
function wp_deregister_style( $handle ) { global $wp_styles; if ( ! is_a( $wp_styles, 'WP_Styles' ) ) { if ( ! did_action( 'init' ) ) _doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ), '<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>init</code>' ), '3.3' ); $wp_styles = new WP_Styles(); } $wp_styles->remove( $handle ); }
3605
No comments yet... Be the first to leave a reply!