Yes, of course, but then you have edit function gk_post_meta_sidebar function in the gavern/helpers.layout.fragments.php to this form:
- Code: Select all
function gk_post_meta_sidebar($attachment = false) {
global $tpl;
$tag_list = get_the_tag_list( '', __( ', ', GKTPLNAME ) );
?>
<?php if(!(is_tag() || is_archive() || is_home() || is_search() || is_page_template())) : ?>
<aside class="gk-post-meta">
<ul>
<?php if($tag_list != ''): ?>
<li class="tags">
<p><?php _e('Tagged under:', GKTPLNAME); ?></p>
<?php echo $tag_list; ?>
</li>
<?php endif; ?>
</ul>
</aside>
<?php endif; ?>
<?php
}
or even:
- Code: Select all
function gk_post_meta_sidebar($attachment = false) {
global $tpl;
$tag_list = get_the_tag_list( '', __( ', ', GKTPLNAME ) );
?>
<?php if(!(is_tag() || is_archive() || is_home() || is_search() || is_page_template())) : ?>
<aside class="gk-post-meta">
<?php if($tag_list != ''): ?>
<p><?php _e('Tagged under:', GKTPLNAME); ?></p>
<?php echo $tag_list; ?>
<?php endif; ?>
</aside>
<?php endif; ?>
<?php
}