Post titles below the post format content
So to move the title below the content just move the html. <article> <div class=”entry-content”> <?php the_content(); ?> </div> <!– end entry-content –> <div class=”entry-header”> <h2 class=”entry-title”><a href=”https://wordpress.stackexchange.com/questions/180437/<?php the_permalink(); ?>”><?php the_title(); ?></a></h2> </div> </article> You need to rotate your html a bit. First thing you need to do is add the wordpress function add_theme_support(‘post-thumbnails’) to … Read more