• Resolved iatenine

    (@iatenine)


    I have a client asking for his reporters to be credited below the title rather than simply at the bottom of each story. I tried to move around the footer with CSS but realized quickly how unwieldy this would become

    Is there any chance such a setting could be added to the theme somewhere down the road?

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

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

    (@alxmedia)

    Hi, this is customization beyond what I can assist with, but to give you a start:

    You would need to edit single.php with a child theme and find line 20:

    
    <h1 class="entry-title"><?php the_title(); ?></h1>
    

    After this, move this from line 57-63 and put it below the line above:

    
    <?php if ( ( get_theme_mod( 'author-bio', 'on' ) == 'on' ) && get_the_author_meta( 'description' ) ): ?>
    <div class="author-bio">
    <div class="bio-avatar"><?php echo get_avatar(get_the_author_meta('user_email'),'128'); ?></div>
    <p class="bio-name"><?php the_author_meta('display_name'); ?></p>
    <p class="bio-desc"><?php the_author_meta('description'); ?></p>
    <div class="clear"></div>
    </div>
    <?php endif; ?>
    
Viewing 1 replies (of 1 total)
  • The topic ‘Move author toward top of page’ is closed to new replies.