Last active
June 13, 2017 12:53
-
-
Save ingozoell/deda9c5dbd3d4d1355fd670798e70a63 to your computer and use it in GitHub Desktop.
WP Shortcode CSS Tab
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
.iz_tab { | |
display: inline-block; | |
} |
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
// 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