Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. /*
  3. * Plugin Name: WordPress ShortCode
  4. * Description: Create your WordPress shortcode.
  5. * Version:
  6. * Author:
  7. * Author URI:
  8. */
  9.  
  10. function wp_first_shortcode(){
  11. echo "Hello World";
  12. }
  13.  
  14. add_shortcode(‘first’, ‘wp_first_shortcode’);
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement