Created
December 12, 2012 00:16
-
-
Save gicolek/4263675 to your computer and use it in GitHub Desktop.
Sample Shortcode
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
<?php | |
function wp_light_advanced_text($atts, $content = null) { | |
extract( shortcode_atts( array( | |
'foo' => 'WPized Light by X-Team All Rights Reserved', | |
), $atts ) ); | |
return "<div id='{$foo}'>" . do_shortcode( $content ) . '</div>'; | |
} | |
add_shortcode( 'wp_light_advanced_text', 'wp_light_advanced_text' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment