Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicartists.events.overlookedtracks.com
/
wp-content
/
themes
/
muzicon
/
Editing: header.php
<?php /** * The Header: Logo and main menu * * @package MUZICON * @since MUZICON 1.0 */ ?><!DOCTYPE html> <html <?php language_attributes(); ?> class="no-js<?php // Class scheme_xxx need in the <html> as context for the <body>! echo ' scheme_' . esc_attr( muzicon_get_theme_option( 'color_scheme' ) ); ?>"> <head> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php if ( function_exists( 'wp_body_open' ) ) { wp_body_open(); } else { do_action( 'wp_body_open' ); } $muzicon_full_post_loading = ( muzicon_is_singular( 'post' ) || muzicon_is_singular( 'attachment' ) ) && muzicon_get_value_gp( 'action' ) == 'full_post_loading'; $muzicon_prev_post_loading = ( muzicon_is_singular( 'post' ) || muzicon_is_singular( 'attachment' ) ) && muzicon_get_value_gp( 'action' ) == 'prev_post_loading'; // Don't display the short links while actions 'full_post_loading' and 'prev_post_loading' if ( ! $muzicon_full_post_loading && ! $muzicon_prev_post_loading ) { // Short links to fast access to the content, sidebar and footer from the keyboard ?><a class="skip-link muzicon_skip_link skip_to_content_link" href="#content_skip_link_anchor" tabindex="<?php echo esc_attr( apply_filters( 'muzicon_filter_skip_links_tabindex', 0 ) ); ?>"><?php esc_html_e( "Skip to content", 'muzicon' ); ?></a><?php if ( muzicon_sidebar_present() ) { ?><a class="skip-link muzicon_skip_link skip_to_sidebar_link" href="#sidebar_skip_link_anchor" tabindex="<?php echo esc_attr( apply_filters( 'muzicon_filter_skip_links_tabindex', 0 ) ); ?>"><?php esc_html_e( "Skip to sidebar", 'muzicon' ); ?></a><?php } ?><a class="skip-link muzicon_skip_link skip_to_footer_link" href="#footer_skip_link_anchor" tabindex="<?php echo esc_attr( apply_filters( 'muzicon_filter_skip_links_tabindex', 0 ) ); ?>"><?php esc_html_e( "Skip to footer", 'muzicon' ); ?></a><?php } do_action( 'muzicon_action_before_body' ); ?> <div class="<?php echo esc_attr( apply_filters( 'muzicon_filter_body_wrap_class', 'body_wrap' ) ); ?>" <?php do_action('muzicon_action_body_wrap_attributes'); ?>> <?php do_action( 'muzicon_action_before_page_wrap' ); ?> <div class="<?php echo esc_attr( apply_filters( 'muzicon_filter_page_wrap_class', 'page_wrap' ) ); ?>" <?php do_action('muzicon_action_page_wrap_attributes'); ?>> <?php do_action( 'muzicon_action_page_wrap_start' ); ?> <?php // Don't display the header elements while actions 'full_post_loading' and 'prev_post_loading' if ( ! $muzicon_full_post_loading && ! $muzicon_prev_post_loading ) { do_action( 'muzicon_action_before_header' ); // Header $muzicon_header_type = muzicon_get_theme_option( 'header_type' ); if ( 'custom' == $muzicon_header_type && ! muzicon_is_layouts_available() ) { $muzicon_header_type = 'default'; } get_template_part( apply_filters( 'muzicon_filter_get_template_part', "templates/header-" . sanitize_file_name( $muzicon_header_type ) ) ); // Side menu if ( in_array( muzicon_get_theme_option( 'menu_side', 'none' ), array( 'left', 'right' ) ) ) { get_template_part( apply_filters( 'muzicon_filter_get_template_part', 'templates/header-navi-side' ) ); } // Mobile menu if ( apply_filters( 'muzicon_filter_use_navi_mobile', muzicon_sc_layouts_showed( 'menu_button' ) || $muzicon_header_type == 'default' ) ) { get_template_part( apply_filters( 'muzicon_filter_get_template_part', 'templates/header-navi-mobile' ) ); } do_action( 'muzicon_action_after_header' ); } ?> <?php do_action( 'muzicon_action_before_page_content_wrap' ); ?> <div class="page_content_wrap<?php if ( muzicon_is_off( muzicon_get_theme_option( 'remove_margins' ) ) ) { if ( empty( $muzicon_header_type ) ) { $muzicon_header_type = muzicon_get_theme_option( 'header_type' ); } if ( 'custom' == $muzicon_header_type && muzicon_is_layouts_available() ) { $muzicon_header_id = muzicon_get_custom_header_id(); if ( $muzicon_header_id > 0 ) { $muzicon_header_meta = muzicon_get_custom_layout_meta( $muzicon_header_id ); if ( ! empty( $muzicon_header_meta['margin'] ) ) { ?> page_content_wrap_custom_header_margin<?php } } } $muzicon_footer_type = muzicon_get_theme_option( 'footer_type' ); if ( 'custom' == $muzicon_footer_type && muzicon_is_layouts_available() ) { $muzicon_footer_id = muzicon_get_custom_footer_id(); if ( $muzicon_footer_id ) { $muzicon_footer_meta = muzicon_get_custom_layout_meta( $muzicon_footer_id ); if ( ! empty( $muzicon_footer_meta['margin'] ) ) { ?> page_content_wrap_custom_footer_margin<?php } } } } do_action( 'muzicon_action_page_content_wrap_class', $muzicon_prev_post_loading ); ?>"<?php if ( apply_filters( 'muzicon_filter_is_prev_post_loading', $muzicon_prev_post_loading ) ) { ?> data-single-style="<?php echo esc_attr( muzicon_get_theme_option( 'single_style' ) ); ?>"<?php } do_action( 'muzicon_action_page_content_wrap_data', $muzicon_prev_post_loading ); ?>> <?php do_action( 'muzicon_action_page_content_wrap', $muzicon_full_post_loading || $muzicon_prev_post_loading ); // Single posts banner if ( apply_filters( 'muzicon_filter_single_post_header', muzicon_is_singular( 'post' ) || muzicon_is_singular( 'attachment' ) ) ) { if ( $muzicon_prev_post_loading ) { if ( muzicon_get_theme_option( 'posts_navigation_scroll_which_block', 'article' ) != 'article' ) { do_action( 'muzicon_action_between_posts' ); } } // Single post thumbnail and title $muzicon_path = apply_filters( 'muzicon_filter_get_template_part', 'templates/single-styles/' . muzicon_get_theme_option( 'single_style' ) ); if ( muzicon_get_file_dir( $muzicon_path . '.php' ) != '' ) { get_template_part( $muzicon_path ); } } // Widgets area above page $muzicon_body_style = muzicon_get_theme_option( 'body_style' ); $muzicon_widgets_name = muzicon_get_theme_option( 'widgets_above_page', 'hide' ); $muzicon_show_widgets = ! muzicon_is_off( $muzicon_widgets_name ) && is_active_sidebar( $muzicon_widgets_name ); if ( $muzicon_show_widgets ) { if ( 'fullscreen' != $muzicon_body_style ) { ?> <div class="content_wrap"> <?php } muzicon_create_widgets_area( 'widgets_above_page' ); if ( 'fullscreen' != $muzicon_body_style ) { ?> </div> <?php } } // Content area do_action( 'muzicon_action_before_content_wrap' ); ?> <div class="content_wrap<?php echo 'fullscreen' == $muzicon_body_style ? '_fullscreen' : ''; ?>"> <?php do_action( 'muzicon_action_content_wrap_start' ); ?> <div class="content"> <?php do_action( 'muzicon_action_page_content_start' ); // Skip link anchor to fast access to the content from keyboard ?> <span id="content_skip_link_anchor" class="muzicon_skip_link_anchor"></span> <?php // Single posts banner between prev/next posts if ( ( muzicon_is_singular( 'post' ) || muzicon_is_singular( 'attachment' ) ) && $muzicon_prev_post_loading && muzicon_get_theme_option( 'posts_navigation_scroll_which_block', 'article' ) == 'article' ) { do_action( 'muzicon_action_between_posts' ); } // Widgets area above content muzicon_create_widgets_area( 'widgets_above_content' ); do_action( 'muzicon_action_page_content_start_text' );
Save
Cancel