Skip to content

Instantly share code, notes, and snippets.

@elshahat
Created July 15, 2020 07:57
Show Gist options
  • Save elshahat/45438897bc6422cea2ca84725f65c5cd to your computer and use it in GitHub Desktop.
Save elshahat/45438897bc6422cea2ca84725f65c5cd to your computer and use it in GitHub Desktop.
function new_shortcode($atts, $content = null) {
extract(shortcode_atts(array(
“type” => “warning”
), $atts));
return '<div class="alert alert-'.$type.'">'.$content.'</div>';
}
add_shortcode(“warning_box”, “new_shortcode”);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment