PluginProbe
WP Coder – Insert & Manage Code Snippets / 3.5
WP Coder – Insert & Manage Code Snippets v3.5
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
wp-coder / includes / settings / options / includes.php

includes.php in WP Coder – Insert & Manage Code Snippets 3.5, at includes/settings/options/includes.php

48 lines 885 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined( 'ABSPATH' ) || exit;
4
5 return [
6
7 'include' => [
8 'type' => 'select',
9 'name' => '[include]',
10 'title' => __( 'Type', 'wpcoder' ),
11 'options' => [ 'css' => 'css', 'js' => 'js' ],
12 'class' => 'display-option',
13 ],
14
15 'include_file' => [
16 'type' => 'url',
17 'name' => '[include_file]',
18 'title' => __( 'URL', 'wpcoder' ),
19 ],
20
21 'js_attr' => [
22 'type' => 'select',
23 'name' => '[file_js_att]',
24 'title' => __( 'Attribute', 'wpcoder' ),
25 'options' => [
26 0 => 'none',
27 'defer' => 'defer',
28 'async' => 'async'
29 ],
30 'class' => 'js-attr',
31 ],
32
33 'dequeue' => [
34 'type' => 'select',
35 'name' => '[dequeue]',
36 'title' => __( 'Type', 'wpcoder' ),
37 'options' => [ 'css' => 'css', 'js' => 'js' ],
38 'class' => 'display-option',
39 ],
40
41 'handle' => [
42 'type' => 'text',
43 'name' => '[handle]',
44 'title' => __( 'ID', 'wpcoder' ),
45 ],
46
47
48 ];