_wp_admin_html_begin example

/** * Fires when enqueuing Customizer control scripts. * * @since 3.4.0 */
do_action( 'customize_controls_enqueue_scripts' );

// Let's roll. header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) );

wp_user_settings();
_wp_admin_html_begin();

$body_class = 'wp-core-ui wp-customizer js';

if ( wp_is_mobile() ) :
    $body_class .= ' mobile';
    add_filter( 'admin_viewport_meta', '_customizer_mobile_viewport_meta' );
endif;

if ( $wp_customize->is_ios() ) {
    $body_class .= ' ios';
}


function iframe_header( $title = '', $deprecated = false ) {
    show_admin_bar( false );
    global $hook_suffix$admin_body_class$wp_locale;
    $admin_body_class = preg_replace( '/[^a-z0-9_-]+/i', '-', $hook_suffix );

    $current_screen = get_current_screen();

    header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) );
    _wp_admin_html_begin();
    ?> <title><?php bloginfo( 'name' ); ?> &rsaquo; <?php echo $title; ?> &#8212; <?php _e( 'WordPress' ); ?></title> <?php     wp_enqueue_style( 'colors' );
    ?> <script type="text/javascript"> addLoadEvent = function(func){if(typeof jQuery!=='undefined')jQuery(function(){func();});else if(typeof wpOnload!=='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}; function tb_close(){var win=window.dialogArguments||opener||parent||top;win.tb_remove();} var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ?>', pagenow = '<?php echo esc_js( $current_screen->id ); ?>', typenow = '<?php echo esc_js( $current_screen->post_type ); ?>', adminpage = '

function wp_iframe( $content_func, ...$args ) {
    _wp_admin_html_begin();
    ?> <title><?php bloginfo( 'name' ); ?> &rsaquo; <?php _e( 'Uploads' ); ?> &#8212; <?php _e( 'WordPress' ); ?></title> <?php
    wp_enqueue_style( 'colors' );
    // Check callback name for 'media'.     if (
        ( is_array( $content_func ) && ! empty( $content_func[1] ) && str_starts_with( (string) $content_func[1], 'media' ) ) ||
        ( ! is_array( $content_func ) && str_starts_with( $content_func, 'media' ) )
    ) {
        wp_enqueue_style( 'deprecated-media' );
    }

$admin_title = apply_filters( 'admin_title', $admin_title$title );

wp_user_settings();

_wp_admin_html_begin();
?> <title><?php echo esc_html( $admin_title ); ?></title> <?php
wp_enqueue_style( 'colors' );
wp_enqueue_script( 'utils' );
wp_enqueue_script( 'svg-painter' );

$admin_body_class = preg_replace( '/[^a-z0-9_-]+/i', '-', $hook_suffix );
?> <script type="text/javascript"> addLoadEvent = function(func){if(typeof jQuery!=='undefined')jQuery(function(){func();});else if(typeof wpOnload!=='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}; var ajaxurl = '
Home | Imprint | This part of the site doesn't use cookies.