Move Post Meta Under Post Thumbnail Without It Adopting Link Styling.
-
I am working in a child theme of Twenty Sixteen and trying to move the Entry Meta Data up under the post thumbnail instead of showing up at the bottom in the post footer.
I have it in mostly the correct place (as seen here) but now it is all styled as a link and I can’t work out how to apply separate styling to change it back to the default look.
Here is what I changed in content.php
<?php twentysixteen_post_thumbnail(); ?> <?php twentysixteen_entry_meta(); ?> <?php edit_post_link( sprintf( /* translators: %s: Name of current post */ __( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ), get_the_title() ), '<span class="edit-link">', '</span>' ); ?> <div class="entry-content">
Is there a better way/better spot to place the code? If I do have the code placed correctly, what is the css I am looking for?
An example of what the meta used to look like can be found here as I haven’t gotten around to editing the placement on single post pages.
Thanks.
- The topic ‘Move Post Meta Under Post Thumbnail Without It Adopting Link Styling.’ is closed to new replies.