fixes
This commit is contained in:
parent
544c416c88
commit
01e848619c
1 changed files with 22 additions and 0 deletions
22
functions.php
Normal file
22
functions.php
Normal 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' );
|
||||||
Loading…
Add table
Add a link
Reference in a new issue