client-fachwerk-sauna/functions.php
2022-03-08 12:05:23 +01:00

22 lines
521 B
PHP

<?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' );