25 lines
651 B
PHP
25 lines
651 B
PHP
<?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,
|
|
),
|
|
),
|
|
);
|