Advertisement
salmancreation

wp-header.php footer.php

Oct 8th, 2018
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.80 KB | None | 0 0
  1. <header id="masthead" class="site-header">
  2.         <div class="site-branding">
  3.             <?php
  4.             the_custom_logo();
  5.             if ( is_front_page() && is_home() ) :
  6.                 ?>
  7.                 <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  8.                 <?php
  9.             else :
  10.                 ?>
  11.                 <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
  12.                 <?php
  13.             endif;
  14.             $eventtheme_description = get_bloginfo( 'description', 'display' );
  15.             if ( $eventtheme_description || is_customize_preview() ) :
  16.                 ?>
  17.                 <p class="site-description"><?php echo $eventtheme_description; /* WPCS: xss ok. */ ?></p>
  18.             <?php endif; ?>
  19.         </div><!-- .site-branding -->
  20.  
  21.         <nav id="site-navigation" class="main-navigation">
  22.             <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_html_e( 'Primary Menu', 'eventtheme' ); ?></button>
  23.             <?php
  24.             wp_nav_menu( array(
  25.                 'theme_location' => 'menu-1',
  26.                 'menu_id'        => 'primary-menu',
  27.             ) );
  28.             ?>
  29.         </nav><!-- #site-navigation -->
  30.     </header><!-- #masthead -->
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39. ========================
  40. footer.php
  41. =================
  42.  
  43.  
  44.  
  45. <footer id="colophon" class="site-footer">
  46.         <div class="site-info">
  47.             <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'eventtheme' ) ); ?>">
  48.                 <?php
  49.                 /* translators: %s: CMS name, i.e. WordPress. */
  50.                 printf( esc_html__( 'Proudly powered by %s', 'eventtheme' ), 'WordPress' );
  51.                 ?>
  52.             </a>
  53.             <span class="sep"> | </span>
  54.                 <?php
  55.                 /* translators: 1: Theme name, 2: Theme author. */
  56.                 printf( esc_html__( 'Theme: %1$s by %2$s.', 'eventtheme' ), 'eventtheme', '<a href="http://spinetheme.com">Salman Ahmed</a>' );
  57.                 ?>
  58.         </div><!-- .site-info -->
  59.     </footer><!-- #colophon -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement