Current path: home/webdevt/www/wdp/wp-content/themes/kerge/framework-customizations/theme/options/
?? Go up: /home/webdevt/www/wdp/wp-content/themes/kerge/framework-customizations/theme
<?php if ( ! defined( 'FW' ) ) {
die( 'Forbidden' );
}
if ( function_exists( 'kerge_tracking_wp_head' ) ) {
$options = array(
'custom_css_js' => array(
'title' => esc_html__( 'Custom CSS and JS', 'kerge' ),
'type' => 'tab',
'options' => array(
'custom_css_js_fields' => array(
'title' => esc_html__( 'Custom CSS and JS', 'kerge' ),
'type' => 'box',
'options' => array(
'custom_styles' => array(
'label' => esc_html__( 'Custom CSS', 'kerge' ),
'desc' => esc_html__( 'Add your custom CSS styles.', 'kerge' ),
'type' => 'textarea',
'value' => '',
),
'external_styles' => array(
'label' => esc_html__( 'External CSS', 'kerge' ),
'desc' => esc_html__( 'Add your custom external (.css) file. Example: <link rel="stylesheet" type="text/css" href="yourstyle.css">', 'kerge' ),
'type' => 'textarea',
'value' => '',
),
'external_js' => array(
'label' => esc_html__( 'External JS', 'kerge' ),
'desc' => esc_html__( 'Add your custom external (.js) file. Example: <script src="yourscript.js"></script>', 'kerge' ),
'type' => 'textarea',
'value' => '',
),
)
)
)
)
);
}