File tree 5 files changed +5
-173
lines changed
5 files changed +5
-173
lines changed Original file line number Diff line number Diff line change 17
17
'lib/config.php ' , // Configuration
18
18
'lib/assets.php ' , // Scripts and stylesheets
19
19
'lib/titles.php ' , // Page titles
20
- 'lib/nav.php ' , // Custom nav modifications
21
20
'lib/extras.php ' , // Custom functions
22
21
];
23
22
Original file line number Diff line number Diff line change 8
8
* Enable theme features
9
9
*/
10
10
add_theme_support ('soil-clean-up ' ); // Enable clean up from Soil
11
+ add_theme_support ('soil-nav-walker ' ); // Enable cleaner nav walker from Soil
11
12
add_theme_support ('soil-relative-urls ' ); // Enable relative URLs from Soil
12
13
add_theme_support ('soil-nice-search ' ); // Enable nice search from Soil
13
14
add_theme_support ('soil-jquery-cdn ' ); // Enable to load jQuery from the Google CDN
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -11,38 +11,3 @@ function get_search_form() {
11
11
return $ form ;
12
12
}
13
13
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
- }
Original file line number Diff line number Diff line change 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">
4
2
<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">
16
5
<?php
17
6
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 ' ]);
19
8
endif ;
20
9
?>
21
10
</nav>
You can’t perform that action at this time.
0 commit comments