PATH:
home
/
letacommog
/
rachat-or-bourgenbresse
/
wp-content
/
themes
/
dt-the7
/
template-parts
/
footer
<?php /** * Bottom bar template * * @package vogue * @since 1.0.0 */ // File Security Check if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <!-- !Bottom-bar --> <div id="bottom-bar" <?php echo presscore_bottom_bar_class(); ?> role="contentinfo"> <div class="wf-wrap"> <div class="wf-container-bottom"> <div class="wf-table wf-mobile-collapsed"> <?php $logo = presscore_get_the_bottom_bar_logo(); if ( $logo ) { echo '<div id="branding-bottom" class="wf-td">'; presscore_display_the_logo( $logo ); echo '</div>'; } do_action( 'presscore_credits' ); $config = presscore_config(); $copyrights = $config->get( 'template.bottom_bar.copyrights' ); $credits = $config->get( 'template.bottom_bar.credits' ); if ( $copyrights || $credits ) : ?> <div class="wf-td"> <div class="wf-float-left"> <?php echo $copyrights; if ( $credits ) { echo ' Dream-Theme — truly <a href="http://dream-theme.com" target="_blank">premium WordPress themes</a>'; } ?> </div> </div> <?php endif; ?> <div class="wf-td"> <?php presscore_nav_menu_list( 'bottom', 'wf-float-right' ); ?> </div> <?php $bottom_text = $config->get( 'template.bottom_bar.text' );; if ( $bottom_text ) : ?> <div class="wf-td bottom-text-block"> <?php echo wpautop( do_shortcode( $bottom_text ) ); ?> </div> <?php endif; ?> </div> </div><!-- .wf-container-bottom --> </div><!-- .wf-wrap --> </div><!-- #bottom-bar -->
[+]
..
[-] bottom-bar.php
[edit]
[-] .htaccess
[edit]
[-] index.php
[edit]