Changeset 1712118
- Timestamp:
- 08/11/2017 02:19:58 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
helpful-features/trunk/inc/twentytwenty/functions.php
r1712107 r1712118 39 39 function hefe_twentytwenty_enqueue_css(){ 40 40 if(get_option('hefe_twentytwenty_customizer_control_enqueue')){ 41 wp_enqueue_style('hefe-twentytw nty-style', hefe_dir_url.'inc/twentytwnty/css/twentytwenty.css', array(), '1.0.0', 'all');41 wp_enqueue_style('hefe-twentytwenty-style', hefe_dir_url.'inc/twentytwenty/css/twentytwenty.css', array(), '1.0.0', 'all'); 42 42 } 43 43 } … … 51 51 function hefe_twentytwenty_enqueue_js(){ 52 52 if(get_option('hefe_twentytwenty_customizer_control_enqueue')){ 53 wp_enqueue_script('hefe-twentytwenty-event-move-script', hefe_dir_url.'inc/twentytwenty/js/ cjquery.event.move.js', array('jquery'), '1.3.6', true);53 wp_enqueue_script('hefe-twentytwenty-event-move-script', hefe_dir_url.'inc/twentytwenty/js/jquery.event.move.js', array('jquery'), '1.3.6', true); 54 54 wp_enqueue_script('hefe-twentytwenty-script', hefe_dir_url.'inc/twentytwenty/js/jquery.twentytwenty.js', array('jquery'), '1.0.0', true); 55 55 wp_enqueue_script('hefe-twentytwenty-etc-script', hefe_dir_url.'inc/twentytwenty/js/twentytwenty-etc-script.js', array('jquery'), '1.0.0', true); … … 64 64 add_action('wp_enqueue_scripts', 'hefe_twentytwenty_register_css', 999999); 65 65 function hefe_twentytwenty_register_css(){ 66 wp_register_style('hefe-twentytw nty-style', hefe_dir_url.'inc/twentytwnty/css/twentytwenty.css', array(), '1.0.0', 'all');66 wp_register_style('hefe-twentytwenty-style', hefe_dir_url.'inc/twentytwenty/css/twentytwenty.css', array(), '1.0.0', 'all'); 67 67 } 68 68 } … … 74 74 add_action('wp_enqueue_scripts', 'hefe_twentytwenty_register_js', 999999); 75 75 function hefe_twentytwenty_register_js(){ 76 wp_register_script('hefe-twentytwenty-event-move-script', hefe_dir_url.'inc/twentytwenty/js/ cjquery.event.move.js', array('jquery'), '1.3.6', true);76 wp_register_script('hefe-twentytwenty-event-move-script', hefe_dir_url.'inc/twentytwenty/js/jquery.event.move.js', array('jquery'), '1.3.6', true); 77 77 wp_register_script('hefe-twentytwenty-script', hefe_dir_url.'inc/twentytwenty/js/jquery.twentytwenty.js', array('jquery'), '1.0.0', true); 78 78 wp_register_script('hefe-twentytwenty-etc-script', hefe_dir_url.'inc/twentytwenty/js/twentytwenty-etc-script.js', array('jquery'), '1.0.0', true); … … 92 92 add_shortcode('hefe_twentytwenty_parent', 'hefe_twentytwenty_shortcode_parent'); 93 93 function hefe_twentytwenty_shortcode_parent($atts, $content = null){ 94 wp_enqueue_style('hefe-twentytw nty-style');94 wp_enqueue_style('hefe-twentytwenty-style'); 95 95 wp_enqueue_script('hefe-twentytwenty-event-move-script'); 96 96 wp_enqueue_script('hefe-twentytwenty-script'); … … 122 122 add_shortcode('hefe_twentytwenty_child_after', 'hefe_twentytwenty_shortcode_child'); 123 123 function hefe_twentytwenty_shortcode_child($atts, $content = null){ 124 wp_enqueue_style('hefe-twentytw nty-style');124 wp_enqueue_style('hefe-twentytwenty-style'); 125 125 wp_enqueue_script('hefe-twentytwenty-event-move-script'); 126 126 wp_enqueue_script('hefe-twentytwenty-script');
Note: See TracChangeset
for help on using the changeset viewer.