print_late_styles [ WordPress Function ]
print_late_styles ( No parameters )
| Defined at: |
|
Soorgelijke functies: print_admin_styles, _print_styles, wp_print_styles, print_footer_scripts, print_head_scripts
Prints the styles that were queued too late for the HTML head.
Source
<?php
function print_late_styles() {
global $wp_styles, $concatenate_scripts;
if ( !is_a($wp_styles, 'WP_Styles') )
return;
$wp_styles->do_concat = $concatenate_scripts;
$wp_styles->do_footer_items();
if ( apply_filters('print_late_styles', true) )
_print_styles();
$wp_styles->reset();
return $wp_styles->done;
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- print_late_styles() WordPress function reference, arguments and ...
Prints the styles that were queued too late for the HTML head.
queryposts.com - print_late_styles | A HitchHackers guide through WordPress
Dec 13, 2011 ... function print_late_styles() { global $wp_styles, $concatenate_scripts; if ( !is_a($ wp_styles, 'WP_Styles') ) return; $wp_styles->do_concat ...
hitchhackerguide.com - Docs for page script-loader.php
Description | Includes | Functions. WordPress scripts and styles ...
phpdoc.wordpress.org - Detail view of script-loader.php - yukei.net
wp_enqueue_scripts() print_admin_styles() print_late_styles() ...
lab.yukei.net