Reply To: How to place the post date above the post header

Home Forums Support How to place the post date above the post header Reply To: How to place the post date above the post header

Home Forums Support How to place the post date above the post header Reply To: How to place the post date above the post header

#180822
Tom
Lead Developer
Lead Developer

In 1.3.29 you’ll be able to do this:

add_action( 'after_setup_theme', 'generate_move_post_meta' );
function generate_move_post_meta()
{
    remove_action( 'generate_after_entry_title', 'generate_post_meta' );
    add_action( 'generate_before_entry_title', 'generate_post_meta' );
}