-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront-page.php
82 lines (74 loc) · 1.68 KB
/
front-page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
/**
* Template for displaying homepage
*
* @package ceskaecommerce
*/
get_header();
$allowed_html = sk_get_allowed_html();
// GET PAGES AND LOAD TEMPLATES
$output = '';
$args = array(
'posts_per_page' => 20,
'post_type' => 'page',
'orderby' => 'menu_order',
'order' => 'ASC',
'no_found_rows' => true,
'suppress_filters' => false,
'ignore_sticky_posts' => true,
'post_status' => 'publish'
);
$pages = new WP_Query( $args );
foreach ( $pages->posts as $page ) {
$pageID = $page->ID;
$cache_key = 'sk_page_' . intval( $pageID );
$page_content = '';
ob_start();
$template_name = get_page_template_slug( $page->ID );
if ( !empty( $template_name ) && 0 === validate_file( $template_name ) ) {
include( locate_template( $template_name, false, false ) );
}
$page_content = ob_get_clean();
$output .= $page_content;
}
wp_reset_query();
// OUTPUT
echo $output;
if (!is_user_logged_in()):
?>
<div class="backdrop">
<div class="modal">
<img style="width: 100%; max-width: 20rem; height: auto; margin-bottom: 4rem;" src="<?php echo THEME_WEB_ROOT; ?>/static/img/illust/content/logo-ceska-ecommerce.svg" alt="Česká e-commerce" width="500" height="56">
<h1><strong>Aktuální data se právě připravují…</strong></h1>
</div>
</div>
<style>
html,
body {
position: relative;
overflow: hidden;
}
.backdrop {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.85);
z-index: 1000;
}
.modal {
max-width: 500px;
padding: 3rem 2rem 5rem 2rem;
margin: 1rem;
text-align: center;
background-color: white;
}
</style>
<?php
endif;
get_footer();
?>