Add Entry Meta to Pages

By default, the entry meta (date and author) is only added to posts. If you would like to display entry meta on pages as well, use the PHP snippet below:

add_action( 'generate_after_entry_header', 'tu_page_meta' );
function tu_page_meta() {
	if ( 'page' == get_post_type() ) : ?>
		<div class="entry-meta">
			<?php generate_posted_on(); ?>
		</div><!-- .entry-meta -->
	<?php endif;
}