• I’m trying to figure out how to get the posts page to not show the

    By author

    piece to the side of the post title. I’ve managed to hide the authors avatar but posts still have the column for the author name to the side. posts also list the authors name under the title and that is the only place I want it to show. Any ideas?
    https://fayettevilleforward.org/latest-posts/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hack around in the files i did the same thing like in single.php

    the author section might be in index.php (?) in the loop;
    something similar to:

    <div class="author-box">
    																					<p>by <?php ......... ?></p>
    													</div>

    you could try to locate and remove this section (in different words: ‘Hack around in the files ‘ ??

    or you could remove it using css, by adding something like this to style.css of your theme:

    .author-box { display: none; }
    div.post div.post-content { margin-left:0;}

    the second line stretches the post content into the available space; and would probably be neccesary even if you remove the code.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘hide post author’ is closed to new replies.