How to show ‘tags’ in ‘WordPress Pages’ [not Posts]

enter your tags instead of the specified ones or delete the extra ones:

function wps_display_custom_tags ($post_meta) {
  // delete meta tags you do not want to display
  return array( 'author', 'post-date', 'comments', 'sticky', 'tags');
}
add_filter('twentytwenty_post_meta_location_single_top', 'wps_display_custom_tags');