summaryrefslogtreecommitdiffhomepage
path: root/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions.php')
-rwxr-xr-xfunctions.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index 4358df1..f48605d 100755
--- a/functions.php
+++ b/functions.php
@@ -53,7 +53,7 @@ register_nav_menus(
array(
'top-menu' => 'Top Menu Location',
- 'mobile-menu' => 'Mobile Menu Location'
+ //'mobile-menu' => 'Mobile Menu Location'
)
);
@@ -73,3 +73,7 @@ add_filter('nav_menu_link_attributes', function($atts, $item, $args, $depth) {
return $atts;
}, 10, 4);
+function register_navwalker() {
+ require_once get_template_directory() . '/plugins/class-wp-picocss-navwalker.php';
+}
+add_action('after_setup_theme', 'register_navwalker');