Created
June 21, 2013 05:58
-
-
Save eimkasp/5829179 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_theme_support('menus'); | |
add_theme_support('post-thumbnails'); | |
add_action('init', 'register_my_menus'); | |
function register_my_menus() { | |
register_nav_menus( | |
array( | |
'primary-menu' => __('Viršutinis meniu'), | |
'secondary-menu' => __('Kategoriju meniu') | |
// 'secondary-menu' => __( 'Pagrindinis meniu' ), | |
) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment