add_action( 'genesis_entry_header', 'reposition_post_info_above_entry_title', 1 ); /** * Reposition the post info above the entry title. * * @since 1.0.0 * * @return void */ function reposition_post_info_above_entry_title() { if ( ! is_front_page() && ! is_home() && ! is_archive() ) { return; } remove_action( 'genesis_entry_header', 'genesis_post_info', 12 ); add_action( 'genesis_entry_header', 'genesis_post_info', 7 ); }