Files
Roman Pyrih c2e100a763 first commit
2023-07-24 08:30:51 +02:00

21 lines
751 B
PHP

<?php
/**
* The template part for selected copyrights section
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
$social_icons = function_exists( 'fw_get_db_customizer_option' ) ? fw_get_db_customizer_option( 'social_icons' ) : '';
?>
<section class="ds ms page_copyright section_padding_25 columns_margin_top_20 columns_margin_bottom_20">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<p class="darklinks grey small-text"><?php echo wp_kses_post( function_exists( 'fw_get_db_customizer_option' ) ? fw_get_db_customizer_option( 'copyrights_text' ) : esc_html__( 'Powered by WordPress', 'solarify' ) ); ?>
</p>
</div>
</div>
</div>
</section><!-- .copyrights -->