Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
themes
/
beautique
/
skins
/
default
/
templates
/
✏️
Editing: footer-custom.php
<?php /** * The template to display default site footer * * @package BEAUTIQUE * @since BEAUTIQUE 1.0.10 */ $beautique_footer_id = beautique_get_custom_footer_id(); $beautique_footer_meta = get_post_meta( $beautique_footer_id, 'trx_addons_options', true ); if ( ! empty( $beautique_footer_meta['margin'] ) ) { beautique_add_inline_css( sprintf( '.page_content_wrap{padding-bottom:%s}', esc_attr( beautique_prepare_css_value( $beautique_footer_meta['margin'] ) ) ) ); } ?> <footer class="footer_wrap footer_custom footer_custom_<?php echo esc_attr( $beautique_footer_id ); ?> footer_custom_<?php echo esc_attr( sanitize_title( get_the_title( $beautique_footer_id ) ) ); ?> <?php $beautique_footer_scheme = beautique_get_theme_option( 'footer_scheme' ); if ( ! empty( $beautique_footer_scheme ) && ! beautique_is_inherit( $beautique_footer_scheme ) ) { echo ' scheme_' . esc_attr( $beautique_footer_scheme ); } ?> "> <?php // Custom footer's layout do_action( 'beautique_action_show_layout', $beautique_footer_id ); ?> </footer><!-- /.footer_wrap -->
💾 Save
❌ Cancel