<?php
/**
 * Kubilay Portfolio Theme - functions
 */

if ( ! defined( 'ABSPATH' ) ) { exit; }

// Basic theme supports
add_action('after_setup_theme', function () {
    add_theme_support('title-tag');
    add_theme_support('post-thumbnails');
    add_theme_support('html5', ['search-form','comment-form','comment-list','gallery','caption','style','script']);
});

// Enqueue theme stylesheet (style.css)
add_action('wp_enqueue_scripts', function () {
    wp_enqueue_style('kubilay-portfolio-style', get_stylesheet_uri(), [], '1.0.0');
});
