registering menus

This commit is contained in:
Vladimir Vassilev 2014-09-30 13:32:53 +03:00
parent d2f136b173
commit 23e15d9662
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
<?php
register_nav_menus(
array( 'main-menu' => __( 'Main Menu', 'initfest' ),
'footer-openfest' => __('OpenFest', 'initfest'),
'footer-openfest' => __('OpenFest', 'initfest'),
'footer-schedule' => __('Schedule', 'initfest'),
'footer-others' => __('Footer Others', 'initfest'),
'footer-followus' => __('Follow us in:', 'initfest') ) )
);