# ablocks/2.11.0/templates/theme-builder/header.php

aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder &amp; Animation Builder, version 2.11.0. 25 lines.

- Page: https://pluginprobe.com/plugins/ablocks/2.11.0/code/templates/theme-builder/header.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.11.0/raw/templates/theme-builder/header.php
- Modified: 2026-01-11T10:59:34+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/ablocks/2.11.0/code/templates/theme-builder/header.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
	<meta charset="<?php echo esc_attr( get_bloginfo( 'charset' ) ); ?>">
	<meta name="viewport" content="width=device-width, initial-scale=1" />
	<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>" />
	<link rel="profile" href="<?php echo esc_url( 'http://gmpg.org/xfn/11' ); ?>" />

	<?php if ( ! current_theme_supports( 'title-tag' ) ) : ?>
		<title><?php echo esc_html( wp_get_document_title() ); ?></title>
	<?php endif; ?>

	<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php
	wp_body_open();

	do_action( 'ablocks/templates/theme_builder/header' );

```
