Здравствуйте! Как выводить и лого и текст? Сейчас выводится что-то одно
<a class="navbar-brand" href="<?php echo home_url( '/' ); ?>">
<?php
if($current_options['text_title'] ==true)
{ echo "<div class=qua_title_head>" . get_bloginfo( ). "</div>"; }
else if($current_options['upload_image_logo']!='')
{ ?>
<img src="<?php echo $current_options['upload_image_logo']; ?>" style="height:<?php if($current_options['height']!='') { echo $current_options['height']; } else { "80"; } ?>px; width:<?php if($current_options['width']!='') { echo $current_options['width']; } else { "200"; } ?>px;" />
<?php } else { ?>
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo.png">
<?php } ?>
</a>