Archived topic
Author and date of publication on page
3 replies · Started by Michal on August 27, 2019
Viewing posts 1–4 of 4
Hello,
is there any way, how to show author and date of publication on page (not post)?
Thanks
Hi there,
Give this a shot:
add_filter( 'generate_entry_meta_post_types', function( $types ) {
$types[] = 'page';
return $types;
} );
add_action( 'wp', function() {
if ( is_page() ) {
add_action( 'generate_after_entry_header', 'generate_post_meta' );
}
} );
Let me know :)
Thanks, it works :)
You're welcome :)
This archived topic is closed to new replies.