40 lines
1.4 KiB
PHP
40 lines
1.4 KiB
PHP
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
|
||
<!-- Basic Page Needs
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<meta charset="utf-8">
|
||
|
||
<meta name="description" content="">
|
||
<meta name="author" content="">
|
||
|
||
<!-- Mobile Specific Metas
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
||
|
||
<?php wp_head() ?>
|
||
|
||
</head>
|
||
<body>
|
||
|
||
<!-- Header html starts here
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<nav>
|
||
<div class="main-menu-wrapper">
|
||
|
||
<?php
|
||
wp_nav_menu(
|
||
array(
|
||
'menu' => 'primary',
|
||
'container' => '',
|
||
'theme_location' => 'primary',
|
||
'items_wrap' => '<input type="radio" name="slide" id="open-btn"><input type="radio" name="slide" id="cancel-btn"><ul class="nav-links" id="test"><label for="cancel-btn" class="menu-cancel-btn"><i class="fa fa-remove" aria-hidden="true"></i></label>%3$s</ul><label for="open-btn" class="menu-open-btn"><i class="fa fa-bars" aria-hidden="true"></i></label>'
|
||
)
|
||
);
|
||
?>
|
||
</div>
|
||
</nav>
|
||
|