Created
June 5, 2020 14:55
-
-
Save KnightAlex/373796f57cc52bd10b15916f5f141869 to your computer and use it in GitHub Desktop.
Shortcode for blockquote source in WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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