Changeset 2991411
- Timestamp:
- 11/08/2023 03:58:57 AM (2 years ago)
- Location:
- zervise-contact-us-form
- Files:
-
- 10 added
- 3 edited
-
tags/1.0.1/Readme.txt (modified) (1 diff)
-
tags/1.1.1 (added)
-
tags/1.1.1/Readme.txt (added)
-
tags/1.1.1/includes (added)
-
tags/1.1.1/includes/css (added)
-
tags/1.1.1/includes/css/style.css (added)
-
tags/1.1.1/includes/js (added)
-
tags/1.1.1/includes/js/main.js (added)
-
tags/1.1.1/includes/zervise-contact-us-class.php (added)
-
tags/1.1.1/includes/zervise-contact-us-scripts.php (added)
-
tags/1.1.1/zervise-contact-us.php (added)
-
trunk/Readme.txt (modified) (2 diffs)
-
trunk/includes/zervise-contact-us-scripts.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
zervise-contact-us-form/tags/1.0.1/Readme.txt
r2990137 r2991411 4 4 Requires at least: 4.7 5 5 Tested up to: 6.3 6 Stable tag: 1. 0.06 Stable tag: 1.1.0 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later -
zervise-contact-us-form/trunk/Readme.txt
r2990137 r2991411 4 4 Requires at least: 4.7 5 5 Tested up to: 6.3 6 Stable tag: 1. 0.06 Stable tag: 1.1.1 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 73 73 = 1.0.0 = 74 74 * Stable initial version. 75 * Supported with WordPress 5.9. 76 * Colors updated to match original zervise.com theme. 77 * Other performance improvements. 75 * Supported with WordPress 5.8. 76 * Colors updated to match zervise.com theme. -
zervise-contact-us-form/trunk/includes/zervise-contact-us-scripts.php
r2604228 r2991411 1 1 <?php 2 // Adds Scripts 3 function zervise_add_scripts(){ 4 // Adds Main CSS 5 wp_enqueue_style('yts-main-style', plugin_dir_url(__FILE__). '/css/style.css', array(), null, all); 6 // Adds Main JS 7 wp_enqueue_script('yts-main-script', plugin_dir_url(__FILE__). '/js/main.js', array(), null, all); 2 // Adds Scripts 3 function zervise_add_scripts() 4 { 5 // Adds Main CSS 6 wp_enqueue_style('yts-main-style', plugin_dir_url(__FILE__) . '/css/style.css', array(), null, 'all'); 7 // Adds Main JS 8 wp_enqueue_script('yts-main-script', plugin_dir_url(__FILE__) . '/js/main.js', array(), null, 'all'); 8 9 9 // Adds Font-awesome Script10 wp_register_style('fontawesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');11 wp_enqueue_style('fontawesome');12 }10 // Adds Font-awesome Script 11 wp_register_style('fontawesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css'); 12 wp_enqueue_style('fontawesome'); 13 } 13 14 14 add_action('wp_enqueue_scripts', 'zervise_add_scripts');15 add_action('wp_enqueue_scripts', 'zervise_add_scripts');
Note: See TracChangeset
for help on using the changeset viewer.