File Editor
Directories:
.. (Back)
Files:
base.php
masthead.php
Create New File
Create
Edit File: base.php
<?php // ============================================================================= // VIEWS/HEADER/BASE.PHP // ----------------------------------------------------------------------------- // Declares the DOCTYPE for the site, includes the <head>, opens the <body> // element as well as the .x-root <div> and .x-site <div>. // ============================================================================= $x_root_atts = x_atts( apply_filters( 'x_root_atts', array( 'id' => 'x-root', 'class' => 'x-root' ) ) ); $x_site_atts = x_atts( apply_filters( 'x_site_atts', array( 'id' => 'x-site', 'class' => 'x-site site' ) ) ); ?> <!DOCTYPE html> <html class="no-js" <?php language_attributes(); ?>> <head> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php wp_body_open(); ?> <?php do_action( 'x_after_body_begin' ); ?> <div <?php echo $x_root_atts; ?>> <?php do_action( 'x_before_site_begin' ); ?> <div <?php echo $x_site_atts; ?>> <?php do_action( 'x_after_site_begin' ); ?>
Save Changes
Rename File
Rename