Viewing 2 replies - 1 through 2 (of 2 total)
  • move the “posted by”-text below the title

    add this to style.css of your child theme:

    .singular .entry-header .entry-meta { position: relative; }

    to appear on the front-page

    compare content.php of the child tehme with content.php of Twenty Eleven;

    if it is missing, add this into content.php of the child theme (below the entry-title codes):

    <?php if ( 'post' == get_post_type() ) : ?>
    			<div class="entry-meta">
    				<?php twentyeleven_posted_on(); ?>
    			</div><!-- .entry-meta -->
    			<?php endif; ?>
    Thread Starter makta112

    (@makta112)

    It worked! Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Move 'posted by'’ is closed to new replies.