[Resolved] Pagination after Author Box

Home Forums Support [Resolved] Pagination after Author Box

Home Forums Support Pagination after Author Box

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1354082
    Espresso

    Hi,

    I have added the author box, However we would like to place it before the pagination.

    How can we achieve it?

    Thanks,

    Dan

    #1354116
    Leo
    Staff
    Customer Support

    Hi there,

    How are you adding the author box currently?

    #1354118
    Espresso

    PHP in hook:

    <div class="author-box">
    	<?php 
    	
    	global $post;
    	
    	?>
    	
    	<div class="avatar"><?php echo get_avatar( get_the_author_meta( 'ID' )); ?></div>
     
            <h5 class="author-title"><?php printf( esc_attr__( 'About %s', 'the author' ), get_the_author_meta( 'display_name') );?></h5>
    	
    				<div class="author-summary">
    	
            <p class="author-description"><?php echo wp_kses( get_the_author_meta( 'description' ), null ); ?></p>
     
            <div class="author-links">
     
                <a>" title="Read more">
                    ...
                </a>
     
            </div>
     
        </div>
     
    </div>
    #1354242
    Leo
    Staff
    Customer Support

    Which hook are you using?

    #1354295
    Espresso

    After_Primary_Content_Area

    #1354303
    Leo
    Staff
    Customer Support

    Can you try the generate_after_entry_content hook?

    #1354314
    Espresso
    #1354348
    Leo
    Staff
    Customer Support

    Try setting the priority for the hook element to 5.

    #1354362
    Espresso

    It worked! Thanks!

    #1354365
    Leo
    Staff
    Customer Support

    No problem 🙂

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.