forked from GrowthWizard/blank-wordpress-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
25 lines (22 loc) · 702 Bytes
/
Copy pathindex.php
File metadata and controls
25 lines (22 loc) · 702 Bytes
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
<?php
/*
* index.php will be the backup and standard file for all post types
* ...no Content will be shown in the frontend
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<div class="container">
<h1><?php echo esc_html( get_bloginfo( 'name' ) ); ?></h1>
<p>This website is not for public access.</p>
<p>Only available for API clients.</p>
<p>Contact the administrator if anyone wants to consume the API.</p>
</div>
</body>
</html>