• Resolved Ike Ten

    (@ike-ten)


    HI Tom
    on the blog and archive page is there a way to move the post meta below the post excerpt but above the category tags?
    I think the positions based on priority should be featured image > post title > excerpt > read more > post meta > category tags

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Tom

    (@edge22)

    Hi Ike,

    Give this function a try:

    add_action( 'after_setup_theme','tu_rearrange_entry_meta' );
    function tu_rearrange_entry_meta()
    {
    	remove_action( 'generate_after_entry_title', 'generate_post_meta' );
    	add_action( 'generate_after_entry_content', 'generate_post_meta', 15 );
    }

    Let me know ??

    Thread Starter Ike Ten

    (@ike-ten)

    Works great Tom!

    Thanks

    Theme Author Tom

    (@edge22)

    You’re welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Move the post meta below the post excerpt’ is closed to new replies.