Skip to content

Instantly share code, notes, and snippets.

@shahadul878
Last active March 21, 2017 17:29
Show Gist options
  • Save shahadul878/47ace5b8413c22cfe5bdc57d7792294c to your computer and use it in GitHub Desktop.
Save shahadul878/47ace5b8413c22cfe5bdc57d7792294c to your computer and use it in GitHub Desktop.
WordPress Short Code
function add_your_own_function_name( $atts, $content = null ) {
extract( shortcode_atts( array(
'text' => '',
'type' => ''
), $atts ) );
return '<div class="alert alert-'.esc_attr($type).'" role="alert">'.esc_attr($text).'</div>
';
}
add_shortcode('your_shortcode_name', 'add_your_own_function_name');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment