Skip to content

Instantly share code, notes, and snippets.

@zzfortezz
Last active August 8, 2019 08:44
Show Gist options
  • Save zzfortezz/7c69af0d75adfeda4c7a66f70005c896 to your computer and use it in GitHub Desktop.
Save zzfortezz/7c69af0d75adfeda4c7a66f70005c896 to your computer and use it in GitHub Desktop.
<?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