Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
themes
/
shapely
/
inc
:
socialnav.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Social Navigation Menu */ if ( ! function_exists( 'shapely_social_icons' ) ) : /** * Display social links in footer and widgets * * @package shapely */ function shapely_social_icons() { if ( has_nav_menu( 'social-menu' ) ) { wp_nav_menu( array( 'theme_location' => 'social-menu', 'container' => 'nav', 'container_id' => 'social', 'container_class' => 'social-icons', 'menu_id' => 'menu-social-items', 'menu_class' => 'list-inline social-list', 'depth' => 1, 'fallback_cb' => '', 'link_before' => '<i class="social_icon fa"><span>', 'link_after' => '</span></i>', ) ); } } endif;