navasena/wp-content/themes/thinkai/includes/resource/options/logo_setting.php

25 lines
651 B
PHP
Raw Permalink Normal View History

2024-07-31 13:12:38 +07:00
<?php
return array(
'title' => esc_html__( 'Favicon Setting', 'thinkai' ),
'id' => 'logo_setting',
'desc' => '',
'subsection' => false,
'fields' => array(
//Favicon Style
array(
'id' => 'image_favicon',
'type' => 'media',
'url' => true,
'title' => esc_html__( 'Favicon', 'thinkai' ),
'subtitle' => esc_html__( 'Insert site favicon image', 'thinkai' ),
'default' => array( 'url' => get_template_directory_uri() . '/assets/images/favicon/favicon.png' ),
),
array(
'id' => 'logo_settings_section_end',
'type' => 'section',
'indent' => false,
),
),
);