-
Notifications
You must be signed in to change notification settings - Fork 2
/
header.php
30 lines (25 loc) · 826 Bytes
/
header.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<?php
$config = get_option('_prefix_my_options');
$string_converter_site_details = $config['opt-site-details'];
?>
<title><?php echo $string_converter_site_details['opt-customtitle']; ?></title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="Free HTML Templates" name="keywords">
<meta content="Free HTML Templates" name="description">
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon">
<?php wp_head(); ?>
<style id="wp-custom-css">
.navbar-expand-lg .navbar-collapse {
display: grid !important;
justify-content: end !important
}
.w-100 {
height: 300px!important;
}
</style>
</head>