Skip to content

Instantly share code, notes, and snippets.

@dkvadratu
Last active February 8, 2021 07:38
Show Gist options
  • Select an option

  • Save dkvadratu/5a16f281951a14c033318bfe66a47664 to your computer and use it in GitHub Desktop.

Select an option

Save dkvadratu/5a16f281951a14c033318bfe66a47664 to your computer and use it in GitHub Desktop.
{WP} shortcodes [bartag foo="foo-value"]
<?php
function bartag_func( $atts ) {
$a = shortcode_atts( array(
'foo' => 'something',
'bar' => 'something else',
), $atts );
return "foo = {$a['foo']}";
}
add_shortcode( 'bartag', 'bartag_func' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment