Viewing File: /home/maglabs/multicerame/wp-content/themes/dom/skins/roofing/templates/footer-copyright.php

<?php
/**
 * The template to display the copyright info in the footer
 *
 * @package DOM
 * @since DOM 1.0.10
 */

// Copyright area
?> 
<div class="footer_copyright_wrap
<?php
$dom_copyright_scheme = dom_get_theme_option( 'copyright_scheme' );
if ( ! empty( $dom_copyright_scheme ) && ! dom_is_inherit( $dom_copyright_scheme  ) ) {
	echo ' scheme_' . esc_attr( $dom_copyright_scheme );
}
?>
				">
	<div class="footer_copyright_inner">
		<div class="content_wrap">
			<div class="copyright_text">
			<?php
				$dom_copyright = dom_get_theme_option( 'copyright' );
			if ( ! empty( $dom_copyright ) ) {
				// Replace {{Y}} or {Y} with the current year
				$dom_copyright = str_replace( array( '{{Y}}', '{Y}' ), date( 'Y' ), $dom_copyright );
				// Replace {{...}} and ((...)) on the <i>...</i> and <b>...</b>
				$dom_copyright = dom_prepare_macros( $dom_copyright );
				// Display copyright
				echo wp_kses( nl2br( $dom_copyright ), 'dom_kses_content' );
			}
			?>
			</div>
		</div>
	</div>
</div>
Back to Directory File Manager