wp_admin_viewport_meta() WordPress Function
The wp_admin_viewport_meta() function allows you to add a viewport meta tag to the admin header. This can be used to control the width and height of the viewport on mobile devices.
wp_admin_viewport_meta() #
Displays the viewport meta in the admin.
Source
File: wp-admin/includes/misc.php
function wp_admin_viewport_meta() { /** * Filters the viewport meta in the admin. * * @since 5.5.0 * * @param string $viewport_meta The viewport meta. */ $viewport_meta = apply_filters( 'admin_viewport_meta', 'width=device-width,initial-scale=1.0' ); if ( empty( $viewport_meta ) ) { return; } echo '<meta name="viewport" content="' . esc_attr( $viewport_meta ) . '">'; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.5.0 | Introduced. |