-
Notifications
You must be signed in to change notification settings - Fork 3
/
menu-social.php
33 lines (30 loc) · 1.18 KB
/
menu-social.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/*
================================================================================================
The template for displaying the menu. it Contains the social menu items
================================================================================================
@package Arlene
@link https://developer.wordpress.org/reference/functions/wp_nav_menu/
@link https://codex.wordpress.org/Class_Reference/Walker
@copyright Copyright (C) 2017. Samuel Guebo
@license GNU General Public License v2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
@author Samuel Guebo (http://samuelguebo.co/)
================================================================================================
*/
?>
<?php if ( has_nav_menu( 'social' ) ) {
wp_nav_menu(
array(
'theme_location' => 'social',
'container' => 'div',
'container_id' => 'menu-social',
'container_class' => 'menu',
'menu_id' => 'menu-social-items',
'menu_class' => 'menu-items',
'depth' => 1,
'link_before' => '<span class="screen-reader-text">',
'link_after' => '</span>',
'fallback_cb' => '',
)
);
} ?>