enqueue.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
| 4 | |
| 5 | function cf7rzp_public_enqueue(){ |
| 6 | wp_enqueue_script('cf7rzp-sweetalert2', CF7RZP_DIR_URL.'assets/js/lib/sweetalert2.js'); |
| 7 | wp_enqueue_script('cf7rzp-rzp-checkout','https://checkout.razorpay.com/v1/checkout.js'); |
| 8 | wp_enqueue_script('cf7rzp-main',plugins_url('/assets/js/main.js',__DIR__),array('jquery'),CF7RZP_VERSION_NUM); |
| 9 | wp_localize_script('cf7rzp-main', 'ajax_object_cf7rzp', |
| 10 | array ( |
| 11 | 'ajax_url' => admin_url('admin-ajax.php') |
| 12 | ) |
| 13 | ); |
| 14 | |
| 15 | wp_enqueue_style( 'cf7rzp-styles', CF7RZP_DIR_URL.'assets/css/styles.css','',CF7RZP_VERSION_NUM); |
| 16 | } |
| 17 | add_action('wp_enqueue_scripts','cf7rzp_public_enqueue',10); |