Hi Folks – is there anyway to move the tags from the bottom of the post to the top of the post just underneath the title?
Thanks
Hey ShortieD!
Please go to wp-content\themes\enfold\includes folder and open loop-index.php file and find
echo '<footer class="entry-footer">';
wp_link_pages(array('before' =>'<div class="pagination_split_post">',
'after' =>'</div>',
'pagelink' => '<span>%</span>'
));
if(has_tag() && is_single() && !post_password_required())
{
echo '<span class="blog-tags minor-meta">';
the_tags(''.__('Tags:','avia_framework').'<span> ');
echo '</span></span>';
}
echo '</footer>';
which should be between 176th and 190th lines and cut/paste it right below following line
echo '</header>';
Cheers!
Yigit
Hi!
Please do not copy paste from here but find the lines in loop-index.php file and cut and paste right under
echo '</header>';
I have tried it and it does work fine on my installation
Best regards,
Yigit
Hi!
Edit includes > loop-index.php, remove everything then replace it with this code: http://pastebin.com/y09HUmP5
Regards,
Ismael
ace – that did it – thanks!