# ablocks/2.9.0/templates/website-visibility.php

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

- Page: https://pluginprobe.com/plugins/ablocks/2.9.0/code/templates/website-visibility.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.9.0/raw/templates/website-visibility.php
- Modified: 2024-09-30T15:09:36+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.9.0/code/templates/website-visibility.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
global $ablocks_visibility_page_id;
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1.0" charset="<?php bloginfo( 'charset' ); ?>">
<?php if ( ! current_theme_supports( 'title-tag' ) ) : ?>
<title><?php echo wp_get_document_title(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></title>
<?php endif; ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
	<?php
		$post_data = get_post( $ablocks_visibility_page_id );
		echo apply_filters( 'the_content', $post_data->post_content ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		wp_footer();
	?>
</body>
</html>

```
