When writing HTML code or working with WordPress pages, we often come across a situation where we want to clear areas and put next div or element on next line instead of floating with previous block. You can write quick HTML to fix such issues. But in case of repeated situation, you may create this handy code using WordPress shortcode feature. Add the following lines in your theme's funtions.php and use the [clear] shortcode you clear the areas on left and right in HTML. Step 1: function ad_clear_shortcode( $atts , $content = null ) { // Code return ''; } add_shortcode( 'clear',...