';
echo '
';
}
}
/**
* Outputs the end markup of a sticky column.
*
* Outputs the markup directly if no theme modification name has been
* given. Else based on the return value of the mod.
*
* @param string $name Theme modification name.
*/
function flatsome_sticky_column_close( $name = '' ) {
if ( empty( $name ) || get_theme_mod( $name ) ) {
echo '
';
}
}
/**
* @deprecated 3.7
*/
function get_flatsome_breadcrumbs() {
_deprecated_function( __FUNCTION__, '3.7', 'flatsome_breadcrumb' );
flatsome_breadcrumb();
}