wp_print_styles
函数
wp_print_styles ( $handles = false )
- 参数
-
-
(string|bool|array)
$handles
Styles to be printed. Default ‘false’.- Required: 否
- Default: false
-
(string|bool|array)
- 返回值
-
- (string[]) On success, an array of handles of processed WP_Dependencies items; otherwise, an empty array.
- 定义位置
-
-
wp-includes/functions.wp-styles.php
, line 44
-
wp-includes/functions.wp-styles.php
- 引入
- 2.6.0
- 弃用
- –
显示在$handles队列中的样式。
向$handles传递一个空数组可以打印队列,传递一个带有一个字符串的数组可以打印该样式,传递一个字符串数组可以打印这些样式。
function wp_print_styles( $handles = false ) { global $wp_styles; if ( '' === $handles ) { // For 'wp_head'. $handles = false; } if ( ! $handles ) { /** * Fires before styles in the $handles queue are printed. * * @since 2.6.0 */ do_action( 'wp_print_styles' ); } _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ ); if ( ! ( $wp_styles instanceof WP_Styles ) ) { if ( ! $handles ) { return array(); // No need to instantiate if nothing is there. } } return wp_styles()->do_items( $handles ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。