Mmm,
something like this then:
add_filter( 'tc_tagline_display' , 'my_link_in_tagline');
function my_link_in_tagline() {
global $wp_current_filter;
?>
<?php if ( !in_array( '__navbar' , $wp_current_filter ) ) :?>
<div class="container outside">
<div class="site-description">
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
<div class="top-buttons">
<a class="btn btn-mini btn-warning" href="https://localhost/agrihome/market-2" title="A TITLE">My link</a>
<a class="btn btn-mini btn-info" href="https://localhost/agrihome/market-2" title="A TITLE">My link</a>
</div>
</div>
</div>
<?php else : //when hooked on __navbar ?>
<div class="span7 inside site-description">
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
<div class="top-buttons clearfix">
<a class="btn btn-mini btn-warning" href="https://localhost/agrihome/market-2" title="Market">My link</a>
<a class="btn btn-mini btn-info" href="https://localhost/agrihome/market-2" title="A TITLE">My link</a>
</div>
</div>
<?php endif; ?>
<?php
}
And CSS:
.top-buttons { clear:both;}`
you can style the buttons too:
.top-buttons .btn {font-family: normal}
change the background color the font color, and so on.
Here’s the preset button styles you can use:
https://presscustomizr.com/snippet/twitter-bootstrap-components-customizr-wordpress-theme/
Hope this helps.