File: /home/nahevttf/www/wp-content/themes/woodmart/inc/admin/settings/custom-js.php
<?php
/**
 * Custom JS options
 *
 * @package xts
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Direct access not allowed.
}
use XTS\Options;
Options::add_field(
	array(
		'id'       => 'custom_js',
		'name'     => esc_html__( 'Global custom JS', 'woodmart' ),
		'type'     => 'editor',
		'language' => 'javascript',
		'section'  => 'custom_js',
		'priority' => 10,
	)
);
Options::add_field(
	array(
		'id'          => 'js_ready',
		'name'        => esc_html__( 'On document ready', 'woodmart' ),
		'description' => esc_html__( 'Will be executed on $(document).ready()', 'woodmart' ),
		'type'        => 'editor',
		'language'    => 'javascript',
		'section'     => 'custom_js',
		'priority'    => 20,
	)
);