Last active
April 19, 2016 18:32
-
-
Save dbasilioesp/76c804b0a62cc4d208e5 to your computer and use it in GitHub Desktop.
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 | |
// Add Shortcode | |
function special_title_shortcode( $atts , $content = null ) { | |
// Attributes | |
extract( shortcode_atts( | |
array( | |
'class' => '', | |
), $atts ) | |
); | |
// Code | |
ob_start();?> | |
<div class="mediumtitle specialtitle <?php echo $class; ?>"> | |
<?php echo $content; ?> | |
</div> | |
<?php | |
return ob_get_clean(); | |
} | |
add_shortcode( 'special_title', 'special_title_shortcode' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment