• Resolved orgchemby

    (@orgchemby)


    Hi! Thank you for your beautiful theme!

    I’m looking for a way to show the name of the author near the title of the post (on the homepage or on a single post page). It could be like “Date” / “Author name” on a single post page.

    Thank you,
    Maksim

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Theme Author Alexander Agnarson

    (@alxmedia)

    Hi! Thank you.

    Edit content.php in your child theme and find line 31-33:

    
    <h2 class="post-title">
    <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
    </h2><!--/.post-title-->
    

    After this, add the following:

    
    <div class="post-byline">By <?php the_author_posts_link(); ?></div>
    

    And then add this additional css:

    
    .post-byline { margin: -10px 0 10px; }
    

    Should give you a start.

    If you want it in single.php as well, you would just add the same code after the title.

Viewing 1 replies (of 1 total)

The topic ‘Author name’ is closed to new replies.