-
-
Save webdevs-pro/56cebf84d96ae171a82cdcb1cc3f032e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
public function enqueue_script(){ | |
wp_register_script( 'general-script', EC_EXTENTIONS_URL . 'assets/js/script.js', [ 'jquery' ], EC_ELEMENTOR_VERSION, true ); | |
} | |
public function register_frontend_styles(){ | |
wp_register_style('general-style', EC_EXTENTIONS_URL . 'assets/css/general.css', array(), EC_ELEMENTOR_VERSION); | |
} | |
public function enqueue_frontend_styles(){ | |
wp_enqueue_style('general-style'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment