Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. add_action('plugins_loaded', 'stp_pop_init');
  2.  
  3. if (!function_exists('stp_pop_init')){
  4. function stp_pop_init() {
  5. add_action('init', 'stp_pop_setup', 9999);
  6.  
  7. wp_register_style(
  8. 'stp_bootstrap_theme_css',
  9. plugins_url( '/assets/css/bootstrap-theme.css', __FILE__ ),
  10. false,
  11. false,
  12. false
  13. );
  14. wp_register_style(
  15. 'stp_bootstrap_css',
  16. plugins_url( '/assets/css/bootstrap.css', __FILE__ ),
  17. false,
  18. false,
  19. false
  20. );
  21. wp_register_script(
  22. 'stp_bootstrap_js',
  23. plugins_url( '/assets/js/bootstrap.js', __FILE__ ),
  24. array ('jquery'),
  25. false,
  26. false
  27. );
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement