Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Last active June 13, 2017 12:53
Show Gist options
  • Save ingozoell/deda9c5dbd3d4d1355fd670798e70a63 to your computer and use it in GitHub Desktop.
Save ingozoell/deda9c5dbd3d4d1355fd670798e70a63 to your computer and use it in GitHub Desktop.
WP Shortcode CSS Tab
.iz_tab {
display: inline-block;
}
// TAB
function sc_iz_tab( $atts, $content = null ) {
// Attributes
extract( shortcode_atts(
array(
'breite' => '',
), $atts )
);
return '<span class="iz_tab" style="width: ' . $breite . ';">' . do_shortcode($content) . '</span>';
}
add_shortcode('iz_tab', 'sc_iz_tab');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment