Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #24230

    How do we hide the author name in blog posts (and also other posts).

    Thank you.

    #122831

    Hi,

    Just add this on your custom.css

    .blog-author.minor-meta {
    display: none;
    }

    Open loop-index.php then find this code

    if(!empty($cats))
    {
    echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
    echo $cats;
    echo '</span><span class="text-sep">/</span>';
    }

    echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
    the_author_posts_link();
    echo '</span>';

    Replace it with

    if(!empty($cats))
    {
    echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
    echo $cats;
    }

    echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
    the_author_posts_link();
    echo '</span>';

    Regards,

    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘hiding author name in blog posts’ is closed to new replies.