Add Entry Meta to Pages

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() ) : ?>


<?php endif;
}

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注