22 lines
521 B
PHP
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' );
|