Guest User

Untitled

a guest
Jan 17th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. add_shortcode( "shortcode_name", "func_name" );
  2. function func_name ($atts) {
  3. $atts = shortcode_atts(
  4. array(
  5. 'attr_name' => 'attr_default_value' // attribute name and default value
  6. ), $atts );
  7. ?>
  8.  
  9. // for using attribute in code
  10. $atts['attr_name']
Add Comment
Please, Sign In to add comment