This commit is contained in:
Jonas Heinrich 2022-03-08 12:05:23 +01:00
parent 544c416c88
commit 01e848619c

22
functions.php Normal file
View file

@ -0,0 +1,22 @@
<?php
/**
* fachwerksauna functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package fachwerksauna
*/
function fachwerksauna_setup() {
register_nav_menus(
array(
'primary' => esc_html__( 'Primary', 'fachwerksauna' ),
'secondary' => esc_html__( 'Secondary', 'fachwerksauna' ),
'footer' => esc_html__( 'Footer', 'fachwerksauna' ),
)
);
}
add_action( 'after_setup_theme', 'fachwerksauna_setup' );