<?php

/* Theme Setup */
if ( !function_exists( 'periar_setup' ) ):

	function periar_setup() {
		/**
		 * Adds theme support for featured image
		 */
		add_theme_support( 'post-thumbnails' );

		/* Image Ratio - 3:2 */
		add_image_size( 'periar-1200-3x2', 300, 200, true );

		/* Image Ratio - 1:1 */
		add_image_size( 'periar-400-1x1', 400, 400, true );

		/* Image Ratio - 1:1 */
		add_image_size( 'periar-800-1x1', 800, 800, true );

		/* Image Ratio - 3:2 */
		add_image_size( 'periar-600-3x2', 600, 400, true );

		/* Image Ratio - 35:24 */
		add_image_size( 'periar-700-480', 700, 480, true );

		// Add default posts and comments RSS feed links to head.
		add_theme_support( 'automatic-feed-links' );
		/*
		 * Adds theme support for automatically adding document title by WordPress
		 */
		add_theme_support( 'title-tag' );
		/*
		 * Make theme available for translation.
		 */
		load_theme_textdomain( 'periar' );
		/**
		 * Adds custom background support.
		 */
		add_theme_support( 'custom-background', array(
		    'default-color' => 'ffffff',
		  )
		);

		/**
		 * Register Navigation Menu
		 */
		register_nav_menus( array (
		    'header_menu' => esc_html__( 'Header Menu', 'periar' ),
			'mobile_menu' => esc_html__( 'Mobile Menu', 'periar' ),
			'social_menu' => esc_html__( 'Social Menu', 'periar' )
		 ) );

		/*
		 * Switch default core markup for search form, comment form, and comments
		 * to output valid HTML5.
		 */
		add_theme_support(
			'html5',
			array(
				'search-form',
				'comment-form',
				'comment-list',
				'gallery',
				'caption',
			)
		);

		/**
		 * Add support for core custom logo.
		 *
		 * @link https://codex.wordpress.org/Theme_Logo
		 */
		add_theme_support(
			'custom-logo',
			array(
				'height'      => 55,
				'width'       => 220,
				'flex-width'  => true,
				'flex-height' => true,
			)
		);

		// Add theme support for selective refresh for widgets.
		add_theme_support( 'customize-selective-refresh-widgets' );

		// Add support for responsive embedded content.
		add_theme_support( 'responsive-embeds' );

		/*
		 * This theme styles the visual editor to resemble the theme style,
		 * specifically font, colors, icons, and column width.
		*/
		add_editor_style( array( 'assets/css/editor-style.css', periar_fonts_url() ) );
	}

endif;

add_action( 'after_setup_theme', 'periar_setup' );
