Advertisement
kobial8

Single Short Code Snippet

Feb 12th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. //Slogan Shortcode
  2. function single_shortcode($atts, $content = null) {
  3. extract(shortcode_atts(array(
  4. 'title' => 'Enter Default Value',
  5. 'text' => 'Enter Default Value',
  6. ), $atts, 'slogan'));
  7. return'';
  8. }
  9. add_shortcode('slogan', 'single_shortcode');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement