' . "\n", esc_url(AV_THEME_URI) ); } }, 1); /** * Theme support + custom image sizes (used by Bricks media controls and * Schema.org/OpenGraph emitters down the line). */ add_action('after_setup_theme', function () { add_theme_support('post-thumbnails'); add_theme_support('html5', [ 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script', ]); add_theme_support('responsive-embeds'); add_theme_support('align-wide'); add_image_size('av-hero', 2400, 1350, true); // 16:9 hero add_image_size('av-card', 800, 600, true); // 4:3 card add_image_size('av-thumb', 400, 300, true); // 4:3 thumb load_child_theme_textdomain('asterion-bricks', AV_THEME_DIR . '/languages'); }); /** * Modular includes — currently only CPT registration. SEO and other modules * will be added as needed; the include loop is opt-in via file_exists(). */ $av_includes = [ 'inc/cpt.php', ]; foreach ($av_includes as $av_include) { $path = AV_THEME_DIR . '/' . $av_include; if (file_exists($path)) { require_once $path; } } unset($av_include, $path);