1) Is there anyway to move the “leave a comment” link to the bottom of the post? Currently it is under the date on the left side bar.
Sela is designed to display the date next to the comment link, so it’s all contained in a single function, the one I referred to above – sela_entry_meta()
in the file /inc/template-tags.php. This function also displays the word “Featured” on featured posts.
This means that it’s easiest to move all these elements together, since they’re bundled into the same function.
Event doing this is a bit cumbersome, since the function is being output in multiple files, including content.php, content-video.php, and all the other content types.
<div class="entry-meta">
<?php sela_entry_meta(); ?>
</div><!-- .entry-meta -->
You would need to copy each of those files into your child theme and then move the above lines – including any conditionals around it – where you want them – say, just after:
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'sela' ) ); ?>
You’ll also need to add some CSS so that the elements aren’t stacked but side-by-side.
In a nutshell, this is a bit of a major change. ??