Skip to content

Instantly share code, notes, and snippets.

@zzfortezz
Last active November 9, 2018 08:23
Show Gist options
  • Save zzfortezz/4ffe117ba93095b9b7e3452f86100d3e to your computer and use it in GitHub Desktop.
Save zzfortezz/4ffe117ba93095b9b7e3452f86100d3e to your computer and use it in GitHub Desktop.
<?php
function __construct()
{
add_action('elementor/init', array($this, 'initiate_elementor_addons'));
add_action('elementor/widgets/widgets_registered', array($this, 'addons_widget_register'));
add_action('elementor/frontend/after_register_scripts', array($this, 'enqueue_script'));
add_action('elementor/frontend/after_register_styles', array($this, 'register_frontend_styles'), 10);
add_action('elementor/frontend/after_enqueue_styles', array($this, 'enqueue_frontend_styles'), 10);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment