Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <?php
  2. /*
  3. * Example Shortcode and Globally Enqueued Stylesheet
  4. *
  5. */
  6. // Our Shortcode function
  7. function hiroy_shortcode($content = null)
  8. {
  9. // Enqueue the stylesheet now
  10. wp_enqueue_style( 'hiroy-css');
  11.  
  12. $content = '<h2>Hi Roy!</h2>';
  13.  
  14. return $content;
  15. }
  16. // Our Shortcode Action
  17. add_shortcode('hiroy', 'hiroy_shortcode');
  18.  
  19. // Register the Stylesheet so it's ready to go.
  20. function hiroy_enqueue_scripts() {
  21. wp_register_style( 'hiroy-css', 'hiroy.css', 'parent-stylesheet', '1.0', all );
  22. }
  23. // Enqueue Stylesheet Action
  24. add_action( 'wp_enqueue_scripts', 'hiroy_enqueue_scripts' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement