Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Text Area

Jessica theme homepage textarea.

// Add Shortcode
function text_area( $atts , $content = null ) {

	return '<aside class="home-blurb wrap"><p>'.$content.'</p></aside>';

}
add_shortcode( 'textarea', 'text_area' );