Definition:
function wp_register_style( $handle, $src, $deps = array() {}
Register CSS style file.
Parameters
- string $handle: Name of the stylesheet.
- string|bool $src: Path to the stylesheet from the root directory of WordPress. Example: ‘/css/mystyle.css’.
- array $deps: Array of handles of any stylesheet that this stylesheet depends on. (Stylesheets that must be loaded before this stylesheet.) Pass an empty array if there are no dependencies.
- string|bool $ver: String specifying the stylesheet version number. Set to NULL to disable. Used to ensure that the correct version is sent to the client regardless of caching.
- string $media: The media for which this stylesheet has been defined.
Source code
function wp_register_style( $handle, $src, $deps = array(), $ver = false, $media = 'all' ) { 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->add( $handle, $src, $deps, $ver, $media ); }
4025
No comments yet... Be the first to leave a reply!