if (!defined('ABSPATH')) { exit; } require_once get_template_directory() . '/inc/depot-setup.php'; require_once get_template_directory() . '/inc/template-helpers.php'; add_action('wp_enqueue_scripts', function () { wp_enqueue_style( 'depot-tagebuch-style', get_stylesheet_uri(), [], wp_get_theme()->get('Version') ); }); add_action('after_setup_theme', function () { add_theme_support('title-tag'); add_theme_support('post-thumbnails'); add_theme_support('html5', [ 'comment-list', 'comment-form', 'search-form', 'gallery', 'caption', 'style', 'script', ]); register_nav_menus([ 'footer' => 'Footer Navigation', ]); });