• Hello all,

    On the post page, I would need to move the little box including the post’s info (author, date, categories, tags) further up the page.

    Looking at the source code of the page as it is rendered on the site, I realise this box is called by <div class=”post-footer” id=”post-footer”> —> <div class=”post-info”> —> <div class=”post-meta”>.

    I cannot find these on any file in the Admin’s CSS Editor. The file single.php includes:

    <div class="primary" id="primary">			
    			<?php while ( have_posts() ) : the_post(); ?>
    				<?php get_template_part( 'content', get_post_format() ); ?>

    Then, directly followed by:
    <nav class="post-navigation">

    So, I assume that what I am looking for is called upon by:
    <?php get_template_part( 'content', get_post_format() ); ?>

    But I cannot find where I can edit this.

    Any help would be greatly appreciated.

  • The topic ‘Move post info up the page’ is closed to new replies.