Created
June 19, 2017 11:55
-
-
Save ventouris/ac9e380b7d41d9ec496f13317518422d 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
add_action('plugins_loaded', 'stp_pop_init'); | |
if (!function_exists('stp_pop_init')){ | |
function stp_pop_init() { | |
add_action('init', 'stp_pop_setup', 9999); | |
wp_register_style( | |
'stp_bootstrap_theme_css', | |
plugins_url( '/assets/css/bootstrap-theme.css', __FILE__ ), | |
false, | |
false, | |
false | |
); | |
wp_register_style( | |
'stp_bootstrap_css', | |
plugins_url( '/assets/css/bootstrap.css', __FILE__ ), | |
false, | |
false, | |
false | |
); | |
wp_register_script( | |
'stp_bootstrap_js', | |
plugins_url( '/assets/js/bootstrap.js', __FILE__ ), | |
array ('jquery'), | |
false, | |
false | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment