PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.11.0
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.11.0
2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 All 80 releases
ablocks / templates / website-visibility.php

website-visibility.php in aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder 2.11.0, at templates/website-visibility.php

24 lines 739 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit;
4 }
5 global $ablocks_visibility_page_id;
6 ?>
7 <!DOCTYPE html>
8 <html <?php language_attributes(); ?>>
9 <head>
10 <meta name="viewport" content="width=device-width,initial-scale=1.0" charset="<?php bloginfo( 'charset' ); ?>">
11 <?php if ( ! current_theme_supports( 'title-tag' ) ) : ?>
12 <title><?php echo wp_get_document_title(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></title>
13 <?php endif; ?>
14 <?php wp_head(); ?>
15 </head>
16 <body <?php body_class(); ?>>
17 <?php
18 $post_data = get_post( $ablocks_visibility_page_id );
19 echo apply_filters( 'the_content', $post_data->post_content ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
20 wp_footer();
21 ?>
22 </body>
23 </html>
24