wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_admin_bar_header is deprecated since version 6.4.0!
Alternative: wp_enqueue_admin_bar_header_styles
Alternative: wp_enqueue_admin_bar_header_styles
wp_admin_bar_header › WordPress Function
Since3.1.0
Deprecated6.4.0
› wp_admin_bar_header ( No parameters )
Defined at: |
|
Codex: |
Prints style and scripts for the admin bar.
Related Functions: wp_admin_bar_render, wp_admin_headers, wp_admin_bar_edit_menu, wp_admin_bar_search_menu, wp_admin_bar_site_menu
Source
function wp_admin_bar_header() { _deprecated_function( __FUNCTION__, '6.4.0', 'wp_enqueue_admin_bar_header_styles' ); $type_attr = current_theme_supports( 'html5', 'style' ) ? '' : ' type="text/css"'; ?> <style<?php echo $type_attr; ?> media="print">#wpadminbar { display:none; }</style> <?php }