Renders a ‘viewport’ meta tag.
Description
This is hooked into ‘wp_head’ to decouple its output from the default template canvas.
Source
function _block_template_viewport_meta_tag() {
echo '<meta name="viewport" content="width=device-width, initial-scale=1" />' . "\n";
}
Changelog
Version | Description |
---|---|
5.8.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.