You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
747 B
35 lines
747 B
<?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,
|
|
)
|
|
);
|
|
|