Skip to content

Instantly share code, notes, and snippets.

@KnightAlex
Created June 5, 2020 14:55
Show Gist options
  • Save KnightAlex/373796f57cc52bd10b15916f5f141869 to your computer and use it in GitHub Desktop.
Save KnightAlex/373796f57cc52bd10b15916f5f141869 to your computer and use it in GitHub Desktop.
Shortcode for blockquote source in WordPress
//blockquote source shortcode
function bs_quote_source_shortcode($atts, $content, $tag){
$output = '<span class="source">' . $content . '</span>';
return $output;
}
add_shortcode('source','bs_quote_source_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment