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.
 
 
 
 
 

47 lines
934 B

<?php
/**
* Custom JS options
*
* @package xts
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Direct access not allowed.
}
use XTS\Options;
/**
* Custom JS section.
*/
Options::add_section(
array(
'id' => 'custom_js',
'name' => esc_html__( 'Custom JS', 'woodmart' ),
'priority' => 130,
'icon' => 'dashicons dashicons-media-text',
)
);
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,
)
);