Skip to content

Instantly share code, notes, and snippets.

@boywondercreative
Created December 1, 2017 23:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boywondercreative/3bd1b31b767d19004a4a5d3aaec1b16d to your computer and use it in GitHub Desktop.
Save boywondercreative/3bd1b31b767d19004a4a5d3aaec1b16d to your computer and use it in GitHub Desktop.
header.php (realty theme)
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/lib/js/html5.js"></script>
<![endif]-->
</head>
<body <?php body_class(); ?>>
<!-- add action after body -->
<?php do_action('tt_body_open'); ?>
<!-- add action after body -->
<?php global $realty_theme_option; ?>
<header id="header"<?php if ( $realty_theme_option['header-layout'] == 'default' ) { echo esc_attr( ' class=nav-below' ); } ?>>
<?php global $realty_theme_option; ?>
<div class="top-header">
<div class="container">
<?php if ( is_active_sidebar( 'sidebar_header' ) ) { ?>
<div class="top-header-sidebar">
<?php dynamic_sidebar( 'sidebar_header' ); ?>
</div>
<?php } ?>
<?php if ( ! $realty_theme_option['disable-header-login-register-bar'] ) { ?>
<div class="top-header-links primary-tooltips">
<?php get_template_part( 'lib/inc/template/login-bar-header' ); ?>
</div>
<?php } ?>
</div>
</div>
<div class="container">
<div class="site-branding">
<?php
if ( ! empty( $realty_theme_option['logo-url'] ) ) {
$logo_url = $realty_theme_option['logo-url'];
} else {
$logo_url = home_url( '/' );
}
?>
<?php if ( is_front_page() && is_home() ) { ?>
<h1 class="site-title"><a href="<?php echo esc_url( $logo_url ); ?>" rel="home"><?php echo realty_get_the_logo(); ?></a></h1>
<?php } else { ?>
<p class="site-title"><a href="<?php echo esc_url( $logo_url ); ?>" rel="home"><?php echo realty_get_the_logo(); ?></a></p>
<?php } ?>
<?php if ( get_bloginfo('description') && $realty_theme_option['header-tagline'] ) { ?>
<div class="tagline">
<?php echo get_bloginfo('description'); ?>
</div>
<?php } ?>
<a id="toggle-navigation" class="navbar-togglex" href="#"><i></i></a>
<div class="mobile-menu-overlay hide"></div>
</div>
<nav class="main-navigation" id="navigation">
<?php
wp_nav_menu( array(
'theme_location' => 'primary',
'container' => 'ul',
'menu_class' => 'primary-menu',
) );
?>
</nav>
</div>
</header>
<div id="content">
@boywondercreative
Copy link
Author

new action added via line 19

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment