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;
}

發表回覆

您的郵箱地址不會被公開。 必填項已用 * 標註