Skip to content

Instantly share code, notes, and snippets.

@gspearce
Created September 10, 2013 13:49
Show Gist options
  • Select an option

  • Save gspearce/6509664 to your computer and use it in GitHub Desktop.

Select an option

Save gspearce/6509664 to your computer and use it in GitHub Desktop.
Extracts shortcode attributes.
<?php
// do not include the opening PHP tag
extract( shortcode_atts( array(
'title' => 'no title',
'something' => 'value',
), $atts,) );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment