Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicartists.events.overlookedtracks.com
/
wp-content
/
themes
/
muzicon
/
Editing: footer.php
<?php /** * The Footer: widgets area, logo, footer menu and socials * * @package MUZICON * @since MUZICON 1.0 */ do_action( 'muzicon_action_page_content_end_text' ); // Widgets area below the content muzicon_create_widgets_area( 'widgets_below_content' ); do_action( 'muzicon_action_page_content_end' ); ?> </div> <?php do_action( 'muzicon_action_after_page_content' ); // Show main sidebar get_sidebar(); do_action( 'muzicon_action_content_wrap_end' ); ?> </div> <?php do_action( 'muzicon_action_after_content_wrap' ); // Widgets area below the page and related posts below the page $muzicon_body_style = muzicon_get_theme_option( 'body_style' ); $muzicon_widgets_name = muzicon_get_theme_option( 'widgets_below_page', 'hide' ); $muzicon_show_widgets = ! muzicon_is_off( $muzicon_widgets_name ) && is_active_sidebar( $muzicon_widgets_name ); $muzicon_show_related = muzicon_is_single() && muzicon_get_theme_option( 'related_position', 'below_content' ) == 'below_page'; if ( $muzicon_show_widgets || $muzicon_show_related ) { if ( 'fullscreen' != $muzicon_body_style ) { ?> <div class="content_wrap"> <?php } // Show related posts before footer if ( $muzicon_show_related ) { do_action( 'muzicon_action_related_posts' ); } // Widgets area below page content if ( $muzicon_show_widgets ) { muzicon_create_widgets_area( 'widgets_below_page' ); } if ( 'fullscreen' != $muzicon_body_style ) { ?> </div> <?php } } do_action( 'muzicon_action_page_content_wrap_end' ); ?> </div> <?php do_action( 'muzicon_action_after_page_content_wrap' ); // Don't display the footer elements while actions 'full_post_loading' and 'prev_post_loading' if ( ( ! muzicon_is_singular( 'post' ) && ! muzicon_is_singular( 'attachment' ) ) || ! in_array ( muzicon_get_value_gp( 'action' ), array( 'full_post_loading', 'prev_post_loading' ) ) ) { // Skip link anchor to fast access to the footer from keyboard ?> <span id="footer_skip_link_anchor" class="muzicon_skip_link_anchor"></span> <?php do_action( 'muzicon_action_before_footer' ); // Footer $muzicon_footer_type = muzicon_get_theme_option( 'footer_type' ); if ( 'custom' == $muzicon_footer_type && ! muzicon_is_layouts_available() ) { $muzicon_footer_type = 'default'; } get_template_part( apply_filters( 'muzicon_filter_get_template_part', "templates/footer-" . sanitize_file_name( $muzicon_footer_type ) ) ); do_action( 'muzicon_action_after_footer' ); } ?> <?php do_action( 'muzicon_action_page_wrap_end' ); ?> </div> <?php do_action( 'muzicon_action_after_page_wrap' ); ?> </div> <?php do_action( 'muzicon_action_after_body' ); ?> <?php wp_footer(); ?> </body> </html>
Save
Cancel