Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

olw_shortcode

// Add Shortcode
function custom_shortcode() {

	<div class="fl-page-header-logo" itemscope="itemscope" itemtype="https://schema.org/Organization">
		<a href="<?php echo esc_url( home_url( '/' ) ); ?>" itemprop="url"><?php FLTheme::logo(); ?></a>
		<?php echo FLTheme::get_tagline(); ?>
	</div>

}
add_shortcode( 'olw_logo', 'custom_shortcode' );