wp_register_style

函式
wp_register_style ( $handle, $src, $deps = array(), $ver = false, $media = 'all' )
引數
  • (string) $handle Name of the stylesheet. Should be unique.
    Required:
  • (string|false) $src Full URL of the stylesheet, or path of the stylesheet relative to the WordPress root directory. If source is set to false, stylesheet is an alias of other stylesheets it depends on.
    Required:
  • (string[]) $deps Optional. An array of registered stylesheet handles this stylesheet depends on. Default empty array.
    Required:
    Default: array()
  • (string|bool|null) $ver Optional. String specifying stylesheet version number, if it has one, which is added to the URL as a query string for cache busting purposes. If version is set to false, a version number is automatically added equal to current installed WordPress version. If set to null, no version is added.
    Required:
    Default: false
  • (string) $media Optional. The media for which this stylesheet has been defined. Default 'all'. Accepts media types like 'all', 'print' and 'screen', or media queries like '(orientation: portrait)' and '(max-width: 640px)'.
    Required:
    Default: 'all'
返回值
  • (bool) Whether the style has been registered. True on success, false on failure.
相關
  • WP_Dependencies::add()
定義位置
相關方法
wp_deregister_stylewp_register_scriptwp_registerregister_block_stylewp_deregister_script
引入
2.6.0
棄用
-

wp_register_style: 這個函式用來向WordPress註冊一個樣式。它接受幾個引數,包括樣式的名稱、源URL、依賴性、版本,以及它是否應該被載入到頁首或頁尾。

註冊一個CSS樣式表。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function wp_register_style( $handle, $src, $deps = array(), $ver = false, $media = 'all' ) {
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );
return wp_styles()->add( $handle, $src, $deps, $ver, $media );
}
function wp_register_style( $handle, $src, $deps = array(), $ver = false, $media = 'all' ) { _wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle ); return wp_styles()->add( $handle, $src, $deps, $ver, $media ); }
function wp_register_style( $handle, $src, $deps = array(), $ver = false, $media = 'all' ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	return wp_styles()->add( $handle, $src, $deps, $ver, $media );
}

常見問題

FAQs
檢視更多 >