File Editor
Directories:
.. (Back)
images
includes
js
languages
sample
skins
themify
uploads
Files:
404.php
changelog.txt
comments.php
customizer-basic-config.php
customizer-config.php
footer.php
functions.php
header.php
index.php
license.txt
media-queries.css
page.php
search.php
searchform.php
sidebar.php
single.php
style.css
taxonomy.php
theme-config.php
theme-functions.php
theme-modules.php
theme-options.php
Create New File
Create
Edit File: header.php
<!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <?php /** Themify Default Variables * @var object */ global $themify; ?> <meta charset="<?php bloginfo( 'charset' ); ?>"> <!-- wp_header --> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php themify_body_start(); // hook ?> <div id="pagewrap" class="hfeed site"> <div id="headerwrap"> <?php themify_header_before(); // hook ?> <header id="header" class="pagewidth" itemscope="itemscope" itemtype="https://schema.org/WPHeader"> <?php themify_header_start(); // hook ?> <hgroup> <?php echo themify_logo_image('site_logo'); ?> <?php if ( $site_desc = get_bloginfo( 'description' ) ) : ?> <?php global $themify_customizer; ?> <div id="site-description" class="site-description"><?php echo class_exists( 'Themify_Customizer' ) ? $themify_customizer->site_description( $site_desc ) : $site_desc; ?></div> <?php endif; ?> </hgroup> <nav itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <div id="menu-icon" class="mobile-button"></div> <?php if ( function_exists( 'themify_custom_menu_nav' ) ) { themify_custom_menu_nav(); } else { wp_nav_menu( array( 'theme_location' => 'main-nav', 'fallback_cb' => 'themify_default_main_nav', 'container' => '', 'menu_id' => 'main-nav', 'menu_class' => 'main-nav' )); } ?> <!-- /#main-nav --> </nav> <?php if(!themify_check('setting-exclude_search_form')): ?> <?php get_search_form(); ?> <?php endif ?> <div class="social-widget"> <?php dynamic_sidebar('social-widget'); ?> <?php if(!themify_check('setting-exclude_rss')): ?> <div class="rss"><a href="<?php if(themify_get('setting-custom_feed_url') != ""){ echo themify_get('setting-custom_feed_url'); } else { echo bloginfo('rss2_url'); } ?>">RSS</a></div> <?php endif ?> </div> <!-- /.social-widget --> <?php themify_header_end(); // hook ?> </header> <!-- /#header --> <?php themify_header_after(); // hook ?> </div> <!-- /#headerwrap --> <div id="body" class="clearfix"> <?php themify_layout_before(); //hook ?>
Save Changes
Rename File
Rename