Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #54995
    vidotto
    Member

    Is it possible to move the line containing the info on “posted on” and author (and “No comments”, as well) from immediately below the title of a post to the end of it?

    I have already created a child theme.

    the website is the following:
    http://www.cgtrofarello.it

    (sorry, it is in Italian)

    Many thanks

    #55050
    Sakin
    Keymaster

    @vidotto: ok then copy content.php file from your parent theme to your child theme and then move the code below to before <footer class="entry-meta">

    <?php if ( 'post' == get_post_type() ) : ?>
        <div class="entry-meta">
            <?php catchbox_posted_on(); ?>
            <?php if ( comments_open() && ! post_password_required() ) : ?>
            	<span class="sep sep-comment"> &mdash; </span>
                <span class="comments-link">
                 	<?php comments_popup_link(__('No Comments &darr;', 'catchbox'), __('1 Comment &darr;', 'catchbox'), __('% Comments &darr;', 'catchbox')); ?>
                </span>
            <?php endif; ?>
        </div><!-- .entry-meta -->
    <?php endif; ?>
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Move "posted on" and author to bottom of a post’ is closed to new replies.