add footer menu area

This commit is contained in:
Jonas Heinrich 2020-04-03 16:42:56 +02:00
parent 9c188c34c1
commit 2122aa387a
5 changed files with 32 additions and 37 deletions

9
kit/functions.php Normal file
View file

@ -0,0 +1,9 @@
<?php
function kit_setup() {
register_nav_menus( array(
'primary' => esc_html__( 'Footer Menu', 'kit' ),
) );
};
add_action( 'after_setup_theme', 'kit_setup' );