Skip to content

Commit 64e78cf

Browse files
committed
Remove nav walker and Bootstrap navbar
1 parent 9efeb67 commit 64e78cf

File tree

5 files changed

+5
-173
lines changed

5 files changed

+5
-173
lines changed

functions.php

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
'lib/config.php', // Configuration
1818
'lib/assets.php', // Scripts and stylesheets
1919
'lib/titles.php', // Page titles
20-
'lib/nav.php', // Custom nav modifications
2120
'lib/extras.php', // Custom functions
2221
];
2322

lib/config.php

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* Enable theme features
99
*/
1010
add_theme_support('soil-clean-up'); // Enable clean up from Soil
11+
add_theme_support('soil-nav-walker'); // Enable cleaner nav walker from Soil
1112
add_theme_support('soil-relative-urls'); // Enable relative URLs from Soil
1213
add_theme_support('soil-nice-search'); // Enable nice search from Soil
1314
add_theme_support('soil-jquery-cdn'); // Enable to load jQuery from the Google CDN

lib/nav.php

-122
This file was deleted.

lib/utils.php

-35
Original file line numberDiff line numberDiff line change
@@ -11,38 +11,3 @@ function get_search_form() {
1111
return $form;
1212
}
1313
add_filter('get_search_form', __NAMESPACE__ . '\\get_search_form');
14-
15-
/**
16-
* Make a URL relative
17-
*/
18-
function root_relative_url($input) {
19-
preg_match('|https?://([^/]+)(/.*)|i', $input, $matches);
20-
if (!isset($matches[1]) || !isset($matches[2])) {
21-
return $input;
22-
} elseif (($matches[1] === $_SERVER['SERVER_NAME']) || $matches[1] === $_SERVER['SERVER_NAME'] . ':' . $_SERVER['SERVER_PORT']) {
23-
return wp_make_link_relative($input);
24-
} else {
25-
return $input;
26-
}
27-
}
28-
29-
/**
30-
* Compare URL against relative URL
31-
*/
32-
function url_compare($url, $rel) {
33-
$url = trailingslashit($url);
34-
$rel = trailingslashit($rel);
35-
if ((strcasecmp($url, $rel) === 0) || root_relative_url($url) == $rel) {
36-
return true;
37-
} else {
38-
return false;
39-
}
40-
}
41-
42-
/**
43-
* Check if element is empty
44-
*/
45-
function is_element_empty($element) {
46-
$element = trim($element);
47-
return !empty($element);
48-
}

templates/header.php

+4-15
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,10 @@
1-
<?php use Roots\Sage\Nav\NavWalker; ?>
2-
3-
<header class="banner navbar navbar-default navbar-static-top" role="banner">
1+
<header class="banner" role="banner">
42
<div class="container">
5-
<div class="navbar-header">
6-
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
7-
<span class="sr-only"><?= __('Toggle navigation', 'sage'); ?></span>
8-
<span class="icon-bar"></span>
9-
<span class="icon-bar"></span>
10-
<span class="icon-bar"></span>
11-
</button>
12-
<a class="navbar-brand" href="<?= esc_url(home_url('/')); ?>"><?php bloginfo('name'); ?></a>
13-
</div>
14-
15-
<nav class="collapse navbar-collapse" role="navigation">
3+
<a class="brand" href="<?= esc_url(home_url('/')); ?>"><?php bloginfo('name'); ?></a>
4+
<nav role="navigation">
165
<?php
176
if (has_nav_menu('primary_navigation')) :
18-
wp_nav_menu(['theme_location' => 'primary_navigation', 'walker' => new NavWalker(), 'menu_class' => 'nav navbar-nav']);
7+
wp_nav_menu(['theme_location' => 'primary_navigation', 'menu_class' => 'nav']);
198
endif;
209
?>
2110
</nav>

0 commit comments

Comments
 (0)