Skip to content

Instantly share code, notes, and snippets.

@musicalbigfoot
Created May 27, 2015 20:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save musicalbigfoot/7ec04f6c3eb12c8a029b to your computer and use it in GitHub Desktop.
Save musicalbigfoot/7ec04f6c3eb12c8a029b to your computer and use it in GitHub Desktop.
clearfix shortcode - wordpress functions
function clearfix_shortcode( $atts, $content = null ) {
extract( shortcode_atts(
array(
'' => '',
), $atts )
);
$result = '<div class="clear"></div>';
return $result;
}
add_shortcode( 'clear', 'clearfix_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment