Current File : /home/mdkeenpw/www/wp-content/themes/globallogistics/skins/default/templates/footer-copyright.php
<?php
/**
 * The template to display the copyright info in the footer
 *
 * @package GLOBALLOGISTICS
 * @since GLOBALLOGISTICS 1.0.10
 */

// Copyright area
?> 
<div class="footer_copyright_wrap
<?php
$globallogistics_copyright_scheme = globallogistics_get_theme_option( 'copyright_scheme' );
if ( ! empty( $globallogistics_copyright_scheme ) && ! globallogistics_is_inherit( $globallogistics_copyright_scheme  ) ) {
	echo ' scheme_' . esc_attr( $globallogistics_copyright_scheme );
}
?>
				">
	<div class="footer_copyright_inner">
		<div class="content_wrap">
			<div class="copyright_text">
			<?php
				$globallogistics_copyright = globallogistics_get_theme_option( 'copyright' );
			if ( ! empty( $globallogistics_copyright ) ) {
				// Replace {{Y}} or {Y} with the current year
				$globallogistics_copyright = str_replace( array( '{{Y}}', '{Y}' ), date( 'Y' ), $globallogistics_copyright );
				// Replace {{...}} and ((...)) on the <i>...</i> and <b>...</b>
				$globallogistics_copyright = globallogistics_prepare_macros( $globallogistics_copyright );
				// Display copyright
				echo wp_kses( nl2br( $globallogistics_copyright ), 'globallogistics_kses_content' );
			}
			?>
			</div>
		</div>
	</div>
</div>