Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $get_logo_image = get_theme_option('logo');
- if($get_logo_image != '') {
- ?>
- <a href="<?php bloginfo('url'); ?>"><img src="<?php echo $get_logo_image; ?>" alt="<?php bloginfo('name'); ?>" title="<?php bloginfo('name'); ?>" class="logoimg" /></a>
- <?php
- } else {
- ?>
- <h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
- <h2><?php bloginfo('description'); ?></h2>
- <?php
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement