golden hour
/home/phakp/public_html/wp/wp-content/themes/zerif-lite
⬆️ Go Up
Upload
File/Folder
Size
Actions
404.php
855 B
Del
OK
CHANGELOG.md
20.78 KB
Del
OK
archive-download.php
1.83 KB
Del
OK
archive.php
1.87 KB
Del
OK
class-tgm-plugin-activation.php
120.27 KB
Del
OK
comments.php
2.65 KB
Del
OK
content-archive-download.php
790 B
Del
OK
content-frontpage.php
4.4 KB
Del
OK
content-large.php
3.98 KB
Del
OK
content-none.php
1.04 KB
Del
OK
content-page-no-title.php
800 B
Del
OK
content-page.php
1.15 KB
Del
OK
content-single-download.php
565 B
Del
OK
content-single.php
2.21 KB
Del
OK
content.php
3.16 KB
Del
OK
css
-
Del
OK
fonts
-
Del
OK
footer.php
10.26 KB
Del
OK
front-page.php
3.18 KB
Del
OK
functions.php
71.63 KB
Del
OK
header.php
2.96 KB
Del
OK
home.php
2.14 KB
Del
OK
images
-
Del
OK
inc
-
Del
OK
index.php
1.76 KB
Del
OK
js
-
Del
OK
languages
-
Del
OK
license.txt
33.79 KB
Del
OK
page.php
1.72 KB
Del
OK
readme.md
6.01 KB
Del
OK
rtl.css
30.16 KB
Del
OK
screenshot.png
180.12 KB
Del
OK
search.php
1.55 KB
Del
OK
sections
-
Del
OK
sidebar.php
1006 B
Del
OK
single-download.php
888 B
Del
OK
single.php
1.44 KB
Del
OK
style.css
138.25 KB
Del
OK
template-blog-large.php
2.51 KB
Del
OK
template-blog.php
2.5 KB
Del
OK
template-frontpage.php
4.56 KB
Del
OK
template-fullwidth-no-title.php
1.06 KB
Del
OK
template-fullwidth.php
1.04 KB
Del
OK
themeisle-hash.json
1.74 KB
Del
OK
ti-about-page
-
Del
OK
ti-customizer-notify
-
Del
OK
ti-prevdem
-
Del
OK
vendor
-
Del
OK
woocommerce.php
594 B
Del
OK
wpglobus-config.json
3.1 KB
Del
OK
wpml-config.xml
2.16 KB
Del
OK
Edit: header.php
<?php /** * The Header for our theme. * Displays all of the <head> section and everything up till <div id="content"> * * @package zerif-lite */ ?><!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <?php zerif_top_head_trigger(); ?> <meta charset="<?php bloginfo( 'charset' ); ?>"> <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(); ?> <?php zerif_bottom_head_trigger(); ?> </head> <?php if ( isset( $_POST['scrollPosition'] ) ) : ?> <body <?php body_class(); ?> onLoad="window.scrollTo(0,<?php echo intval( $_POST['scrollPosition'] ); ?>)"> <?php else : ?> <body <?php body_class(); ?> > <?php endif; zerif_top_body_trigger(); /* Preloader */ if ( is_front_page() && ! is_customize_preview() ) : $zerif_disable_preloader = get_theme_mod( 'zerif_disable_preloader' ); if ( isset( $zerif_disable_preloader ) && ( $zerif_disable_preloader != 1 ) ) : echo '<div class="preloader">'; echo '<div class="status"> </div>'; echo '</div>'; endif; endif; ?> <div id="mobilebgfix"> <div class="mobile-bg-fix-img-wrap"> <div class="mobile-bg-fix-img"></div> </div> <div class="mobile-bg-fix-whole-site"> <header id="home" class="header" itemscope="itemscope" itemtype="http://schema.org/WPHeader"> <div id="main-nav" class="navbar navbar-inverse bs-docs-nav" role="banner"> <div class="container"> <?php zerif_before_navbar_trigger(); ?> <div class="navbar-header responsive-logo"> <button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse"> <span class="sr-only"><?php _e( 'Toggle navigation', 'zerif-lite' ); ?></span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <div class="navbar-brand" itemscope itemtype="http://schema.org/Organization"> <?php if ( has_custom_logo() ) { the_custom_logo(); } else { ?> <div class="site-title-tagline-wrapper"> <h1 class="site-title"> <a href=" <?php echo esc_url( home_url( '/' ) ); ?> "> <?php bloginfo( 'title' ); ?> </a> </h1> <?php $description = get_bloginfo( 'description', 'display' ); if ( ! empty( $description ) ) : ?> <p class="site-description"> <?php echo $description; ?> </p> <!-- /.site-description --> <?php elseif ( is_customize_preview() ) : ?> <p class="site-description"></p> <?php endif; ?> </div> <!-- /.site-title-tagline-wrapper --> <?php } ?> </div> <!-- /.navbar-brand --> </div> <!-- /.navbar-header --> <?php zerif_primary_navigation_trigger(); ?> </div> <!-- /.container --> <?php zerif_after_header_container_trigger(); ?> </div> <!-- /#main-nav --> <!-- / END TOP BAR -->
Save