33 lines
1.0 KiB
PHP
33 lines
1.0 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
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<?php
|
||
wp_nav_menu(
|
||
array(
|
||
'menu' => 'primary',
|
||
'container' => '',
|
||
'theme_location' => 'primary',
|
||
'items_wrap' => '<ul class="test" id="test">%3$s</ul>'
|
||
)
|
||
);
|
||
?>
|