diff options
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' ); |
