Last active
February 28, 2018 14:17
-
-
Save mrkkr/77b83acb469453dca59c559edeaaf34f to your computer and use it in GitHub Desktop.
Logo linkujące do folderu ze zdjęciami w szablonie #php #html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if ( is_front_page() && is_home() ) : ?> | |
<h1 class="navbar-brand mb-0"><a rel="home" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"><?php echo '<img src="'.get_bloginfo('template_directory').'/img/logo-small.png" ?>' ?></a></h1> | |
<?php else : ?> | |
<a class="navbar-brand" rel="home" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"><?php echo '<img src="'.get_bloginfo('template_directory').'/img/logo-small.png" ?>' ?></a> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment