# ultimate-post/4.0.3/addons/builder/templates/header.php

Post Grid Gutenberg Blocks – PostX, version 4.0.3. 22 lines.

- Page: https://pluginprobe.com/plugins/ultimate-post/4.0.3/code/addons/builder/templates/header.php
- Raw: https://pluginprobe.com/plugins/ultimate-post/4.0.3/raw/addons/builder/templates/header.php
- Modified: 2024-01-15T10:13:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ultimate-post/4.0.3/code/addons/builder/templates/header.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
	<meta charset="<?php bloginfo( 'charset' ); ?>">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<?php if ( ! current_theme_supports( 'title-tag' ) ) : ?>
		<title>
			<?php
				// PHPCS - already escaped by WordPress.
				echo wp_get_document_title(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
			?>
		</title>
	<?php endif; ?>
	<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
```
