Guest User

Untitled

a guest
Dec 12th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. class WordPress_Shortcode {
  2.  
  3. function wp_shortcode( $atts ) {
  4.  
  5. }
  6.  
  7. }
  8.  
  9. class Custom_WordPress_Shortcode extends WordPress_Shortcode {
  10.  
  11. function wp_shortcode( $atts ) {
  12.  
  13. }
  14.  
  15. }
  16. $new = new Custom_WordPress_Shortcode;
  17.  
  18. $new->wordpress_shortcode( $atts );
Add Comment
Please, Sign In to add comment