diff options
| author | Nathan Kinkade <nath@nkinka.de> | 2014-07-14 15:22:41 +0000 |
|---|---|---|
| committer | Nathan Kinkade <nath@nkinka.de> | 2014-07-14 15:22:41 +0000 |
| commit | 6816b56e925fbc35bc8415dd59a694da5b8a7b69 (patch) | |
| tree | b34d17d0da66ee207eddec153cb53ed6a146a2c3 /functions.php | |
| parent | 07b2ba9ff5fe1cf4bba34de578c29aee85c48b83 (diff) | |
Very ugly commit. Wasn't on top of regular commits, so this is just a blast commit with all the changes.
Diffstat (limited to 'functions.php')
| -rw-r--r-- | functions.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/functions.php b/functions.php index 08f7652..0820fa2 100644 --- a/functions.php +++ b/functions.php @@ -529,3 +529,11 @@ function twentythirteen_customize_preview_js() { wp_enqueue_script( 'twentythirteen-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20130226', true ); } add_action( 'customize_preview_init', 'twentythirteen_customize_preview_js' ); + +/** + * Vortant custom functions + */ +function register_my_menu() { + register_nav_menu('footer-menu', __( 'Footer Menu' )); +} +add_action( 'init', 'register_my_menu' ); |
