From 6816b56e925fbc35bc8415dd59a694da5b8a7b69 Mon Sep 17 00:00:00 2001 From: Nathan Kinkade Date: Mon, 14 Jul 2014 15:22:41 +0000 Subject: Very ugly commit. Wasn't on top of regular commits, so this is just a blast commit with all the changes. --- functions.php | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'functions.php') 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' ); -- cgit v1.2.3